Do not log to error when interception NotFoundException from Cassandra

This commit is contained in:
Jonas Bonér 2010-07-02 22:52:27 +02:00
parent ab40b483b1
commit 7075672b02

View file

@ -84,7 +84,7 @@ private[akka] object CassandraStorageBackend extends
else None
} catch {
case e =>
log.error(e, "Could not retreive Ref from storage")
log.info("Could not retreive Ref from storage")
None
}
}
@ -196,7 +196,7 @@ private[akka] object CassandraStorageBackend extends
else None
} catch {
case e =>
log.error(e, "Could not retreive Map from storage")
log.info("Could not retreive Map from storage")
None
}
}