From 7075672b02e5f1865daef819ae4520f4fa2b51dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Bon=C3=A9r?= Date: Fri, 2 Jul 2010 22:52:27 +0200 Subject: [PATCH] Do not log to error when interception NotFoundException from Cassandra --- .../src/main/scala/CassandraStorageBackend.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/akka-persistence/akka-persistence-cassandra/src/main/scala/CassandraStorageBackend.scala b/akka-persistence/akka-persistence-cassandra/src/main/scala/CassandraStorageBackend.scala index f393f4a162..387b1bcd13 100644 --- a/akka-persistence/akka-persistence-cassandra/src/main/scala/CassandraStorageBackend.scala +++ b/akka-persistence/akka-persistence-cassandra/src/main/scala/CassandraStorageBackend.scala @@ -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 } }