Fix variable in activeProfileId log message

This commit is contained in:
Davide De Rosa 2022-05-04 09:45:35 +02:00
parent 7ec6ccda6c
commit 56540485cf
1 changed files with 1 additions and 1 deletions

View File

@ -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")")
}
}