We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf1f4e2 commit 3c0eb53Copy full SHA for 3c0eb53
pkg/cmd/cli/cmd/login/logout.go
@@ -125,12 +125,12 @@ func (o LogoutOptions) RunLogout() error {
125
}
126
127
if err := client.OAuthAccessTokens().Delete(token); err != nil {
128
- glog.V(1).Infof("%v\n", err)
+ glog.V(1).Infof("%v", err)
129
130
131
configErr := deleteTokenFromConfig(*o.StartingKubeConfig, o.PathOptions, token)
132
if configErr == nil {
133
- glog.V(1).Infof("Removed token from your local configuration.\n\n")
+ glog.V(1).Infof("Removed token from your local configuration.")
134
135
// only return error instead of successful message if removing token from client
136
// config fails. Any error that occurs deleting token using api is logged above.
0 commit comments