Unintended sensitive data in issue reports (#471)

This commit is contained in:
Davide De Rosa 2024-01-14 14:01:54 +01:00 committed by GitHub
parent ea0fd51362
commit 0299466a8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -360,7 +360,7 @@ private extension ObservableProfile {
if self.value.isProvider { if self.value.isProvider {
// readonly // readonly
} else { } else {
pp_log.debug("Saving OpenVPN configuration: \($0)") pp_log.verbose("Saving OpenVPN configuration: \($0)")
self.value.hostOpenVPNSettings?.configuration = $0.build() self.value.hostOpenVPNSettings?.configuration = $0.build()
} }
} }

View File

@ -150,7 +150,7 @@ private extension ObservableProfile {
if self.value.isProvider { if self.value.isProvider {
// readonly // readonly
} else { } else {
pp_log.debug("Saving WireGuard configuration: \($0)") pp_log.verbose("Saving WireGuard configuration: \($0)")
self.value.hostWireGuardSettings?.configuration = $0.build() self.value.hostWireGuardSettings?.configuration = $0.build()
} }
} }

View File

@ -68,10 +68,10 @@ extension KeychainSecretRepository {
return return
} }
guard let list = list else { guard let list = list else {
pp_log.debug("Keychain items: none") pp_log.verbose("Keychain items: none")
return return
} }
pp_log.debug("Keychain items: \(list)") pp_log.verbose("Keychain items: \(list)")
} }
public func removeAllPasswords(matching id: UUID) { public func removeAllPasswords(matching id: UUID) {