mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2024-11-26 02:30:39 -06:00
reduce StrInterpolater logging level
This commit is contained in:
parent
091507efd4
commit
71a0ae1d93
@ -117,7 +117,7 @@ public class StrInterpolator implements Function<String, String> {
|
||||
// }
|
||||
|
||||
accesses.put(key,value);
|
||||
logger.debug("Template parameter '" + key + "' applied as '" + value + "'");
|
||||
logger.trace("Template parameter '" + key + "' applied as '" + value + "'");
|
||||
// TODO summarize these to how many times
|
||||
return value;
|
||||
|
||||
@ -125,7 +125,7 @@ public class StrInterpolator implements Function<String, String> {
|
||||
|
||||
public Map<String,String> checkpointAccesses() {
|
||||
LinkedHashMap<String,String> accesses = new LinkedHashMap<>(this.accesses);
|
||||
logger.debug("removed template params after applying:" + accesses);
|
||||
logger.trace("removed template params after applying:" + accesses);
|
||||
this.accesses.clear();
|
||||
return accesses;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user