# HG changeset patch # User Bjoern Ricks # Date 1344589296 0 # Node ID 6f36f79676a7dabf09ceb44904c56a51f4eb02d2 # Parent abaf0e55c9d258060754834fe039ca7c28565acf Add debug log of a successfull authentification Add debug log of a successfull authentification against GGinA/WAS inclusive the corresponding features of the authenticated user. flys-client/trunk@5187 c6561f87-3c4e-4783-a992-168aeb5c3f6f diff -r abaf0e55c9d2 -r 6f36f79676a7 flys-client/ChangeLog --- a/flys-client/ChangeLog Fri Aug 10 08:47:30 2012 +0000 +++ b/flys-client/ChangeLog Fri Aug 10 09:01:36 2012 +0000 @@ -1,3 +1,8 @@ +2012-08-08 Björn Ricks + * src/main/java/de/intevation/flys/client/server/auth/was/Response.java: + Add debug log of a successfull authentification inclusive the + corresponding features of the authenticated user. + 2012-08-08 Björn Ricks * src/main/webapp/WEB-INF/features.xml: Add example features for GGinA/WAS role flys_bfg. diff -r abaf0e55c9d2 -r 6f36f79676a7 flys-client/src/main/java/de/intevation/flys/client/server/auth/was/Response.java --- a/flys-client/src/main/java/de/intevation/flys/client/server/auth/was/Response.java Fri Aug 10 08:47:30 2012 +0000 +++ b/flys-client/src/main/java/de/intevation/flys/client/server/auth/was/Response.java Fri Aug 10 09:01:36 2012 +0000 @@ -109,6 +109,8 @@ } List features = this.features.getFeatures( this.assertion.getRoles()); + logger.debug("User " + this.username + " with features " + features + + " successfully authenticated."); return new User(this.username, this.password, this.assertion.getRoles(), assertion, features); }