diff --git a/bot/bot.go b/bot/bot.go index ad1596d..fecaf5a 100644 --- a/bot/bot.go +++ b/bot/bot.go @@ -18,8 +18,6 @@ var ( ) func StartBot() { - log.Println("Starting Kraken DCA Bot lifecycle..") - for { run() diff --git a/main.go b/main.go index 45f2b0c..15e35b0 100644 --- a/main.go +++ b/main.go @@ -9,8 +9,7 @@ import ( ) func main() { - log.Printf("Kraken DCA %s, commit %s, built at %s", version, commit, date) - log.Printf("%s [%s,%s]", runtime.Version(), runtime.GOOS, runtime.GOARCH) + log.Printf("Kraken DCA 🐙 %s, commit %s, built at %s (%s [%s, %s])", version, commit, date, runtime.Version(), runtime.GOOS, runtime.GOARCH) config.LoadConfiguration() bot.StartBot()