Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Merge branch 'master' into 1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
seanf committed May 5, 2011
2 parents 2638a99 + 0fa394d commit 5ec712e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Expand Up @@ -136,7 +136,7 @@ protected String authRequest(String userSuppliedString, String returnToUrl)
}
catch (OpenIDException e)
{
log.warn(e);
log.warn(e, e);
}

return null;
Expand Down Expand Up @@ -209,7 +209,7 @@ public String verifyResponse(HttpServletRequest httpReq)
}
catch (OpenIDException e)
{
log.warn(e);
log.warn(e, e);
}

return null;
Expand Down
Expand Up @@ -58,7 +58,7 @@ public void beforePhase(PhaseEvent event)
}
catch (IOException e)
{
log.warn(e);
log.warn(e, e);
}
return;
}
Expand Down
Expand Up @@ -87,7 +87,7 @@ public void setCredential()
}
catch (Exception e)
{
log.info(e.getMessage());
log.warn(e, e);
}
}
}

0 comments on commit 5ec712e

Please sign in to comment.