Skip to content

Commit

Permalink
item service: move overflow of pending lookups log message to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam- committed Apr 27, 2018
1 parent 71b7a71 commit 4932c04
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ public void queuePriceLookup(int itemId)
}
else
{
log.warn("Dropping pending price lookup for {}", itemId);
log.debug("Dropping pending price lookup for {}", itemId);
}
}

Expand All @@ -381,7 +381,7 @@ public void queueSearch(String search)
}
else
{
log.warn("Dropping pending search for {}", search);
log.debug("Dropping pending search for {}", search);
}
}

Expand All @@ -393,7 +393,7 @@ public void queueItem(int itemId)
}
else
{
log.warn("Dropping pending item lookup for {}", itemId);
log.debug("Dropping pending item lookup for {}", itemId);
}
}

Expand Down

0 comments on commit 4932c04

Please sign in to comment.