1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-28 02:54:31 +03:00

GH-339 Remove unnec' log msgs

This commit is contained in:
Tae Won Ha 2017-01-07 08:33:48 +01:00
parent a3428879af
commit dbf25c25ec
No known key found for this signature in database
GPG Key ID: E40743465B5B8B44
3 changed files with 1 additions and 5 deletions

View File

@ -337,7 +337,6 @@ class MainWindowComponent: WindowComponent,
override func subscription(source: Observable<Any>) -> Disposable {
return source
.do(onNext: { any in NSLog("\(any)") })
.filter { $0 is PrefData }
.map { ($0 as! PrefData).appearance }
.filter { [unowned self] appearanceData in

View File

@ -331,9 +331,6 @@ class MarkdownRenderer: NSObject, Flow, PreviewRenderer {
}
fileprivate func render(from url: URL) {
NSLog("\(#function): \(url)")
let doc = CMDocument(contentsOfFile: url.path, options: .sourcepos)
let renderer = CMHTMLRenderer(document: doc)

View File

@ -130,6 +130,6 @@ class PrefStore: StandardFlow {
self.userDefaults.setValue(self.data.dict(), forKey: PrefStore.compatibleVersion)
self.publish(event: self.data)
})
})
}
}