Reduce severity of log for non-OAuth (phone uses non-OAuth)

This commit is contained in:
burke.davey
2011-05-11 10:50:03 +00:00
parent e38fb4946a
commit 6a46132ec6
3 changed files with 27 additions and 27 deletions

View File

@@ -4,6 +4,5 @@
<classpathentry kind="src" path="c2dm"/> <classpathentry kind="src" path="c2dm"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="con" path="com.google.appengine.eclipse.core.GAE_CONTAINER"/> <classpathentry kind="con" path="com.google.appengine.eclipse.core.GAE_CONTAINER"/>
<classpathentry kind="con" path="com.google.appengine.eclipse.core.GAE_CONTAINER/App Engine"/>
<classpathentry kind="output" path="war/WEB-INF/classes"/> <classpathentry kind="output" path="war/WEB-INF/classes"/>
</classpath> </classpath>

View File

@@ -1,4 +1,4 @@
#Mon Apr 25 17:13:56 PDT 2011 #Tue May 10 23:32:51 BST 2011
eclipse.preferences.version=1 eclipse.preferences.version=1
filesCopiedToWebInfLib=appengine-jsr107cache-1.4.3.jar|jdo2-api-2.3-eb.jar|geronimo-jpa_3.0_spec-1.1.1.jar|geronimo-jta_1.1_spec-1.1.1.jar|datanucleus-jpa-1.1.5.jar|datanucleus-appengine-1.0.8.final.jar|datanucleus-core-1.1.5.jar|appengine-api-labs-1.4.3.jar|appengine-api-1.0-sdk-1.4.3.jar|jsr107cache-1.1.jar filesCopiedToWebInfLib=appengine-api-1.0-sdk-1.5.0.jar|appengine-api-labs-1.5.0.jar|appengine-jsr107cache-1.5.0.jar|jsr107cache-1.1.jar|datanucleus-appengine-1.0.8.final.jar|datanucleus-core-1.1.5.jar|datanucleus-jpa-1.1.5.jar|geronimo-jpa_3.0_spec-1.1.1.jar|geronimo-jta_1.1_spec-1.1.1.jar|jdo2-api-2.3-eb.jar
ormEnhancementInclusions=src/**|c2dm/** ormEnhancementInclusions=src/**|c2dm/**

View File

@@ -80,7 +80,7 @@ public class RequestInfo {
ri.userName = user.getEmail(); ri.userName = user.getEmail();
} }
} catch (Throwable t) { } catch (Throwable t) {
log.log(Level.SEVERE, "Oauth error ", t); log.log(Level.INFO, "Non-OAuth request");
user = null; user = null;
} }
@@ -156,6 +156,7 @@ public class RequestInfo {
private RequestInfo() { private RequestInfo() {
} }
@Override
public String toString() { public String toString() {
return userName + " " + devices.size() + " " + jsonParams; return userName + " " + devices.size() + " " + jsonParams;
} }