Fixed log message format

This commit is contained in:
Collin Smith
2020-09-05 19:00:23 -07:00
parent 0bfa47bd83
commit 3025f4d05d

View File

@ -638,7 +638,7 @@ public final class StatList {
"insertAt(index: %d, stat: %d (%s), param: %d (0x%4$x), value: %d (0x%5$x))", index, stat, entry, param, value);
if (size >= MAX_STATS) {
log.warn("stat(" + stat + ") cannot be inserted, property list is full!");
log.warn("stat({}) cannot be inserted, property list is full!", stat);
return;
}