Skip to content

Commit 3c0eb53

Browse files
authored
Removed line breaks in glog messages
1 parent bf1f4e2 commit 3c0eb53

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/cmd/cli/cmd/login/logout.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -125,12 +125,12 @@ func (o LogoutOptions) RunLogout() error {
125125
}
126126

127127
if err := client.OAuthAccessTokens().Delete(token); err != nil {
128-
glog.V(1).Infof("%v\n", err)
128+
glog.V(1).Infof("%v", err)
129129
}
130130

131131
configErr := deleteTokenFromConfig(*o.StartingKubeConfig, o.PathOptions, token)
132132
if configErr == nil {
133-
glog.V(1).Infof("Removed token from your local configuration.\n\n")
133+
glog.V(1).Infof("Removed token from your local configuration.")
134134

135135
// only return error instead of successful message if removing token from client
136136
// config fails. Any error that occurs deleting token using api is logged above.

0 commit comments

Comments
 (0)