From 4c36ffa07f823d880774ec5ae684b9e1e4ea93d8 Mon Sep 17 00:00:00 2001 From: Ryan Hanson Date: Fri, 25 Oct 2019 14:53:57 +0200 Subject: [PATCH] Properly output public variables to console.app --- Rectangle/WindowManager.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rectangle/WindowManager.swift b/Rectangle/WindowManager.swift index 80cec7c1e..b6746bfe3 100644 --- a/Rectangle/WindowManager.swift +++ b/Rectangle/WindowManager.swift @@ -114,7 +114,7 @@ class WindowManager { ) if Defaults.debug.enabled { - os_log("%{PUBLIC}@ | display: %{PUBLIC}@, calculatedRect: %{PUBLIC}@, resultRect: %{PUBLIC}@", type: .debug, action.name, visibleFrameOfDestinationScreen.debugDescription, newNormalizedRect.debugDescription, resultingRect.debugDescription) + os_log("%{public}@ | display: %{public}@, calculatedRect: %{public}@, resultRect: %{public}@", type: .debug, action.name, visibleFrameOfDestinationScreen.debugDescription, newNormalizedRect.debugDescription, resultingRect.debugDescription) } } }