diff options
Diffstat (limited to 'doGetNextAutoTopic.go')
| -rw-r--r-- | doGetNextAutoTopic.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doGetNextAutoTopic.go b/doGetNextAutoTopic.go index 47fb524..647d209 100644 --- a/doGetNextAutoTopic.go +++ b/doGetNextAutoTopic.go @@ -1,9 +1,10 @@ package main import ( - "fmt" "strconv" "strings" + + "go.wit.com/log" ) func doGetNextAutoTopic() { @@ -20,5 +21,5 @@ func doGetNextAutoTopic() { } } } - fmt.Printf("Auto %d", max+1) + log.Printf("Auto %d", max+1) } |
