diff --git a/gate-core/src/main/groovy/com/netflix/spinnaker/gate/config/AuthConfig.groovy b/gate-core/src/main/groovy/com/netflix/spinnaker/gate/config/AuthConfig.groovy index 32a910fe00..825dad4708 100644 --- a/gate-core/src/main/groovy/com/netflix/spinnaker/gate/config/AuthConfig.groovy +++ b/gate-core/src/main/groovy/com/netflix/spinnaker/gate/config/AuthConfig.groovy @@ -132,6 +132,7 @@ class AuthConfig { def username = (authentication?.getPrincipal() as User)?.username if (username) { permissionService.logout(username) + log.info("Successfully logged out user : {}", username) } delegate.onLogoutSuccess(request, response, authentication) }