mirror of
https://github.com/restic/restic.git
synced 2025-08-21 21:17:27 +00:00
Fix panic for debug.Log() with empty string
This commit is contained in:
@@ -146,7 +146,7 @@ func Log(tag string, f string, args ...interface{}) {
|
||||
current := time.Now()
|
||||
opts.last[process{tag, goroutine}] = current
|
||||
|
||||
if f[len(f)-1] != '\n' {
|
||||
if len(f) == 0 || f[len(f)-1] != '\n' {
|
||||
f += "\n"
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user