Skip to content

Commit

Permalink
Fixed logging
Browse files Browse the repository at this point in the history
  • Loading branch information
OCJvanDijk committed Jun 7, 2019
1 parent 8fe5732 commit 917b038
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Brightness Sync/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -130,11 +130,11 @@ class AppDelegate: NSObject, NSApplicationDelegate {
displayName.contains("LG UltraFine"),
let serialNumber = displayInfo[kDisplaySerialNumber] as? UInt32
{
os_log("Found compatible display: %s", displayName)
os_log("Found compatible display: %{public}@", displayName)
ultraFineDisplays.insert(serialNumber)
}
else {
os_log("Found incompatible display: %s", displayName)
os_log("Found incompatible display: %{public}@", displayName)
}
}
else {
Expand Down
4 changes: 2 additions & 2 deletions Brightness Sync/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0.2</string>
<string>1.0.3</string>
<key>CFBundleVersion</key>
<string>1.0.2</string>
<string>1.0.3</string>
<key>LSMinimumSystemVersion</key>
<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
<key>NSHumanReadableCopyright</key>
Expand Down

0 comments on commit 917b038

Please sign in to comment.