Skip to content
This repository was archived by the owner on Jun 30, 2023. It is now read-only.

Commit 2883c46

Browse files
Update GoogleAppEngineAuthenticator to remove user (#193)
1 parent d803766 commit 2883c46

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

endpoints-framework/src/main/java/com/google/api/server/spi/auth/GoogleAppEngineAuthenticator.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,10 +134,7 @@ public User authenticate(HttpServletRequest request) throws ServiceUnavailableEx
134134
}
135135
User user = new User(appEngineUser.getEmail());
136136
if (attr.isEnabled(Attribute.REQUIRE_APPENGINE_USER)) {
137-
logger.atInfo().log("appEngineUser = %s", appEngineUser);
138137
attr.set(Attribute.AUTHENTICATED_APPENGINE_USER, appEngineUser);
139-
} else {
140-
logger.atInfo().log("User = %s", user);
141138
}
142139
return user;
143140
}

0 commit comments

Comments
 (0)