Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Genesys PGR
Genesys Backend
Commits
357d9c0c
Commit
357d9c0c
authored
Jan 10, 2014
by
Matija Obreza
Browse files
Reduced log levels in SecurityContextUtil
parent
cc2d9ee3
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/genesys2/spring/SecurityContextUtil.java
View file @
357d9c0c
...
...
@@ -17,7 +17,9 @@ public class SecurityContextUtil {
return
((
AuthUserDetails
)
authentication
.
getPrincipal
()).
getUser
();
}
LOG
.
warn
(
"No User in security context."
);
if
(
LOG
.
isDebugEnabled
())
LOG
.
debug
(
"No User in security context, can't specify createdBy/lastUpdatedBy"
);
return
null
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment