mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2025-01-23 15:50:26 +01:00
Use os_log() instead of NSLog()
This commit is contained in:
parent
f67b7df5a9
commit
ef29334a41
@ -10,6 +10,7 @@ import Foundation
|
|||||||
import RSCore
|
import RSCore
|
||||||
import Articles
|
import Articles
|
||||||
import Account
|
import Account
|
||||||
|
import os.log
|
||||||
|
|
||||||
protocol TimelineDelegate: class {
|
protocol TimelineDelegate: class {
|
||||||
func timelineSelectionDidChange(_: TimelineViewController, selectedArticles: [Article]?)
|
func timelineSelectionDidChange(_: TimelineViewController, selectedArticles: [Article]?)
|
||||||
@ -785,7 +786,7 @@ extension TimelineViewController: NSTableViewDelegate {
|
|||||||
return [action]
|
return [action]
|
||||||
|
|
||||||
@unknown default:
|
@unknown default:
|
||||||
NSLog("Unknown table row edge: %ld", edge.rawValue)
|
os_log(.error, "Unknown table row edge: %ld", edge.rawValue)
|
||||||
}
|
}
|
||||||
|
|
||||||
return []
|
return []
|
||||||
|
Loading…
Reference in New Issue
Block a user