mirror of
https://github.com/restic/restic.git
synced 2025-01-03 13:45:20 +00:00
Add newline to debug output
This commit is contained in:
parent
57b8373bc9
commit
7558e99dd5
1 changed files with 4 additions and 0 deletions
|
@ -110,6 +110,10 @@ func Log(tag string, f string, args ...interface{}) {
|
|||
opts.m.Lock()
|
||||
defer opts.m.Unlock()
|
||||
|
||||
if f[len(f)-1] != '\n' {
|
||||
f += "\n"
|
||||
}
|
||||
|
||||
dbgprint := func() {
|
||||
fmt.Fprintf(os.Stderr, "DEBUG["+tag+"]: "+f, args...)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue