From 1193a4cc04ded754d49e1d572ec4014ebe5e2c77 Mon Sep 17 00:00:00 2001 From: Nick White Date: Tue, 31 Mar 2020 12:39:34 +0100 Subject: [bookpipeline] Improve logging output --- aws.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'aws.go') diff --git a/aws.go b/aws.go index 87654c0..1fbb68b 100644 --- a/aws.go +++ b/aws.go @@ -461,5 +461,5 @@ func (a *AwsConn) StartInstances(n int) error { // Log records an item in the with the Logger. Arguments are handled // as with fmt.Println. func (a *AwsConn) Log(v ...interface{}) { - a.Logger.Println(v) + a.Logger.Print(v...) } -- cgit v1.2.1-24-ge1ad