1
0
Fork 0
mirror of https://github.com/restic/restic.git synced 2025-02-02 20:46:57 +00:00

Add warnings via Warnf to the debug log

This commit is contained in:
Michael Eischer 2023-04-12 21:37:37 +02:00
parent bdcafbc11c
commit 37aca6bec0

View file

@ -282,6 +282,7 @@ func Warnf(format string, args ...interface{}) {
if err != nil {
fmt.Fprintf(os.Stderr, "unable to write to stderr: %v\n", err)
}
debug.Log(format, args...)
}
// resolvePassword determines the password to be used for opening the repository.