Skip to content

Commit b19b731

Browse files
committed
Refactor authentication token status log message in tokenmanager.go
1 parent 173d18b commit b19b731

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

authenticationhandler/tokenmanager.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ func (h *AuthTokenHandler) CheckAndRefreshAuthToken(apiHandler apihandler.APIHan
2727
}
2828

2929
isValid := h.isTokenValid(tokenRefreshBufferPeriod)
30-
h.Logger.Info("Token validation status post check", zap.Bool("IsValid", isValid))
30+
h.Logger.Info("Authentication token status check completed", zap.Bool("IsTokenValid", isValid))
3131
return isValid, nil
3232
}
3333

0 commit comments

Comments
 (0)