Unintended sensitive data in issue reports (#471)
This commit is contained in:
parent
ea0fd51362
commit
0299466a8f
|
@ -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()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue