Show message when successfully logged in So that we know the credentials were correct even if the initial sync is taking forever.
1 files changed, 1 insertions(+), 0 deletions(-) M shared/auth.go
M shared/auth.go => shared/auth.go +1 -0
@@ 118,6 118,7 @@ func inquireForAuthInfo() (authInfo *AuthInfo, err error) { if err != nil { return nil, fmt.Errorf("error logging in with given credentials: %s", err) } + fmt.Printf("successfully logged in...\n") authInfo.AccessToken = respLogin.AccessToken authInfo.DeviceID = respLogin.DeviceID