summaryrefslogtreecommitdiff
path: root/aws.go
diff options
context:
space:
mode:
authorNick White <git@njw.name>2020-03-31 12:39:34 +0100
committerNick White <git@njw.name>2020-03-31 12:39:34 +0100
commit1193a4cc04ded754d49e1d572ec4014ebe5e2c77 (patch)
treef00e18cd94d94eda801d5b977e50681df34e8403 /aws.go
parentbaf89fa918f8e6c246172058fafe8d12aeca59d1 (diff)
[bookpipeline] Improve logging output
Diffstat (limited to 'aws.go')
-rw-r--r--aws.go2
1 files changed, 1 insertions, 1 deletions
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...)
}