Browse Source

Remove extra newlines from log statements.

pull/113/head
Abhishek Banthia 3 years ago
parent
commit
7dbd2cb659
  1. 2
      Clocker/Events and Reminders/EventCenter.swift
  2. 2
      Clocker/Panel/PanelController.swift
  3. 2
      Clocker/Preferences/Menu Bar/StatusItemHandler.swift

2
Clocker/Events and Reminders/EventCenter.swift

@ -42,7 +42,7 @@ class EventCenter: NSObject {
}
private func refetchAll() {
Logger.info("\nRefetching events from the store")
Logger.info("Refetching events from the store")
eventsForDate = [:]
filteredEvents = [:]

2
Clocker/Panel/PanelController.swift

@ -268,7 +268,7 @@ class PanelController: ParentPanelController {
if count >= 1 || DataStore.shared().shouldDisplay(.showMeetingInMenubar) {
if let delegate = NSApplication.shared.delegate as? AppDelegate {
Logger.info("\nWe will be invalidating the menubar timer as we want the parent timer to take care of both panel and menubar ")
Logger.info("We will be invalidating the menubar timer as we want the parent timer to take care of both panel and menubar ")
delegate.invalidateMenubarTimer(false)
}

2
Clocker/Preferences/Menu Bar/StatusItemHandler.swift

@ -61,7 +61,7 @@ class StatusItemHandler: NSObject {
setClockerIcon()
}
Logger.info("\nStatus Bar Current State changed: \(currentState)\n")
Logger.info("Status Bar Current State changed: \(currentState)\n")
}
}

Loading…
Cancel
Save