2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-03 17:40:53 +00:00

Add newline to debug output

This commit is contained in:
Alexander Neumann 2015-02-07 17:04:20 +01:00
parent 57b8373bc9
commit 7558e99dd5

View File

@ -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...)
}