From 3025f4d05d0c7b7be556ad469a4c7bcd5ce7a6b8 Mon Sep 17 00:00:00 2001 From: Collin Smith Date: Sat, 5 Sep 2020 19:00:23 -0700 Subject: [PATCH] Fixed log message format --- core/src/com/riiablo/attributes/StatList.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/com/riiablo/attributes/StatList.java b/core/src/com/riiablo/attributes/StatList.java index 78211bde..2292305c 100644 --- a/core/src/com/riiablo/attributes/StatList.java +++ b/core/src/com/riiablo/attributes/StatList.java @@ -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; }