Skip to content
Snippets Groups Projects
Commit f40eefaa authored by brinn's avatar brinn
Browse files

Change two error logs in CachedResultSetManager to warnings as they have a low severity.

SVN: 25962
parent c197451a
No related branches found
No related tags found
No related merge requests found
...@@ -975,7 +975,7 @@ public final class CachedResultSetManager<K> implements IResultSetManager<K>, Se ...@@ -975,7 +975,7 @@ public final class CachedResultSetManager<K> implements IResultSetManager<K>, Se
Future<TableData<T>> tableData = cast(cache.get(dataKey)); Future<TableData<T>> tableData = cast(cache.get(dataKey));
if (tableData == null) if (tableData == null)
{ {
operationLog.error("Reference to the stale cache key " + dataKey); operationLog.warn("Reference to the stale cache key " + dataKey);
return null; return null;
} }
try try
...@@ -1014,7 +1014,7 @@ public final class CachedResultSetManager<K> implements IResultSetManager<K>, Se ...@@ -1014,7 +1014,7 @@ public final class CachedResultSetManager<K> implements IResultSetManager<K>, Se
debug(String.format("Result set for key '%s' has been removed.", resultSetKey)); debug(String.format("Result set for key '%s' has been removed.", resultSetKey));
} else } else
{ {
operationLog.error(String.format("No result set for key '%s' could be found.", operationLog.warn(String.format("No result set for key '%s' could be found.",
resultSetKey)); resultSetKey));
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment