summaryrefslogtreecommitdiff
path: root/aws.go
diff options
context:
space:
mode:
Diffstat (limited to 'aws.go')
-rw-r--r--aws.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/aws.go b/aws.go
index 359c0be..87654c0 100644
--- a/aws.go
+++ b/aws.go
@@ -457,3 +457,9 @@ func (a *AwsConn) StartInstances(n int) error {
})
return err
}
+
+// 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)
+}