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
1 changed files with 1 additions and 0 deletions

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.