lower logging level on less interesting events

This commit is contained in:
Jonathan Shook
2022-02-15 21:23:55 -06:00
parent a1834ca5ef
commit af8f173063
2 changed files with 2 additions and 2 deletions

View File

@@ -201,7 +201,7 @@ public class ParameterMap extends ConcurrentHashMap<String,Object> implements Bi
@Override
public Object remove(Object key) {
Object removed = super.remove(key);
logger.info("removing param: " + key);
logger.trace("removing param: " + key);
markMutation();
return removed;