summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/com/google/gct/login/GoogleLoginUtils.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/com/google/gct/login/GoogleLoginUtils.java b/src/com/google/gct/login/GoogleLoginUtils.java
index 27e1f5e..2373ae3 100644
--- a/src/com/google/gct/login/GoogleLoginUtils.java
+++ b/src/com/google/gct/login/GoogleLoginUtils.java
@@ -84,7 +84,11 @@ public class GoogleLoginUtils {
try {
userInfo = userInfoService.userinfo().get().execute();
} catch (IOException e) {
- LOG.error("Error retrieving user information.", e);
+ //The core IDE functionality still works, so this does
+ //not affect anything right now. The user will receive
+ //error messages when they attempt to do something that
+ //requires a logged in state.
+ LOG.warn("Error retrieving user information.", e);
}
if (userInfo != null && userInfo.getId() != null) {