summaryrefslogtreecommitdiff
path: root/cmd/booktopipeline
diff options
context:
space:
mode:
authorNick White <git@njw.name>2020-10-20 18:12:36 +0100
committerNick White <git@njw.name>2020-10-20 18:12:36 +0100
commit644abdb177331107696b2caf3f0de8ac76a74702 (patch)
tree56dc6e82fc8a866dabbcfff43e41f30eb89fed09 /cmd/booktopipeline
parentf1864ab8bdabb9aa0010fd21af036e6850049612 (diff)
Improve logging by using Println, which ensures there is a space between arguments, even if all are strings
Diffstat (limited to 'cmd/booktopipeline')
-rw-r--r--cmd/booktopipeline/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/booktopipeline/main.go b/cmd/booktopipeline/main.go
index 62e4132..60d1f81 100644
--- a/cmd/booktopipeline/main.go
+++ b/cmd/booktopipeline/main.go
@@ -184,5 +184,5 @@ func main() {
qname = "wipeonly"
}
- fmt.Println("Uploaded book to %s queue", qname)
+ fmt.Println("Uploaded book to queue", qname)
}