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 Articles
|
||||
import Account
|
||||
import os.log
|
||||
|
||||
protocol TimelineDelegate: class {
|
||||
func timelineSelectionDidChange(_: TimelineViewController, selectedArticles: [Article]?)
|
||||
@ -785,7 +786,7 @@ extension TimelineViewController: NSTableViewDelegate {
|
||||
return [action]
|
||||
|
||||
@unknown default:
|
||||
NSLog("Unknown table row edge: %ld", edge.rawValue)
|
||||
os_log(.error, "Unknown table row edge: %ld", edge.rawValue)
|
||||
}
|
||||
|
||||
return []
|
||||
|
Loading…
Reference in New Issue
Block a user