Skip to content

Commit

Permalink
Change log.warning calls to log.fine.
Browse files Browse the repository at this point in the history
  • Loading branch information
jcoleman committed Aug 26, 2011
1 parent ff86306 commit 7047780
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -252,10 +252,10 @@ public Session loadSession(String id) throws IOException {
error = false;

if (data == null) {
log.warning("Session " + id + " not found in Redis");
log.fine("Session " + id + " not found in Redis");
session = null;
} else {
log.warning("Deserializing session from Redis");
log.fine("Deserializing session from Redis");
session = (RedisSession)createEmptySession();
serializer.deserializeInto(data, session);
session.setId(id);
Expand Down

0 comments on commit 7047780

Please sign in to comment.