Skip to content

Commit

Permalink
CorfuTable getByIndexAndFilter logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeeshan Lokhandwala committed Dec 1, 2017
1 parent b6b3db7 commit dcd2239
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ public V get(@ConflictParameter Object key) {
if (indexFunctions.isEmpty()) {
// If there are no index functions, use the entire map
entryStream = mainMap.entrySet().parallelStream();
log.warn("getByIndexAndFilter: Attempted getByIndexAndFilter without indexing");
log.debug("getByIndexAndFilter: Attempted getByIndexAndFilter without indexing");
} else {
Map<I, Map<K, V>> secondaryMap = indexMap.get(indexFunction);
if (secondaryMap != null) {
Expand Down

0 comments on commit dcd2239

Please sign in to comment.