diff --git a/cmd/altvrbot/main.go b/cmd/altvrbot/main.go index ad54e4f..fab0457 100644 --- a/cmd/altvrbot/main.go +++ b/cmd/altvrbot/main.go @@ -1,7 +1,7 @@ package main /* -TODO: Save cookie file +TODO: Save cookie file? TODO: https://github.com/spf13/viper TODO: https://github.com/sirupsen/logrus / https://github.com/golang/glog TODO: https://github.com/juju/errors diff --git a/pkg/altvr/altvr.go b/pkg/altvr/altvr.go index 34c7b59..2950889 100644 --- a/pkg/altvr/altvr.go +++ b/pkg/altvr/altvr.go @@ -41,6 +41,7 @@ func New(u, p string) AltVR { if err != nil { log.Fatal(err) } + log.Println("AVR Logged in") user, err := avr.fetchMyUser() if err != nil { log.Fatal(err) @@ -49,6 +50,7 @@ func New(u, p string) AltVR { if err := avr.FetchFriendships(); err != nil { log.Fatal(err) } + log.Println("AVR Ready") return avr }