From 56540485cf8f19167e978c16df4227e54eccc978 Mon Sep 17 00:00:00 2001 From: Davide De Rosa Date: Wed, 4 May 2022 09:45:35 +0200 Subject: [PATCH] Fix variable in activeProfileId log message --- .../Sources/PassepartoutProfiles/Managers/ProfileManager.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PassepartoutCore/Sources/PassepartoutProfiles/Managers/ProfileManager.swift b/PassepartoutCore/Sources/PassepartoutProfiles/Managers/ProfileManager.swift index 8a675f97..530f2c03 100644 --- a/PassepartoutCore/Sources/PassepartoutProfiles/Managers/ProfileManager.swift +++ b/PassepartoutCore/Sources/PassepartoutProfiles/Managers/ProfileManager.swift @@ -51,7 +51,7 @@ public class ProfileManager: ObservableObject { @Published public private(set) var activeProfileId: UUID? { willSet { - pp_log.debug("Setting active profile: \(activeProfileId?.uuidString ?? "nil")") + pp_log.debug("Setting active profile: \(newValue?.uuidString ?? "nil")") } }