Fix some logger usages
This commit is contained in:
parent
f89b5a005a
commit
90a071ae23
3 changed files with 4 additions and 4 deletions
|
@ -46,13 +46,13 @@ public class WorldDemonWillHandler {
|
|||
public static void addWillWorld(int dim) {
|
||||
if (!containedWills.containsKey(dim)) {
|
||||
containedWills.put(dim, new WillWorld(dim));
|
||||
BMLog.DEBUG.info("Creating demon will cache for world " + dim);
|
||||
BMLog.DEBUG.info("Creating demon will cache for world {}", dim);
|
||||
}
|
||||
}
|
||||
|
||||
public static void removeWillWorld(int dim) {
|
||||
containedWills.remove(dim);
|
||||
BMLog.DEBUG.info("Removing demon will cache for world " + dim);
|
||||
BMLog.DEBUG.info("Removing demon will cache for world {}", dim);
|
||||
}
|
||||
|
||||
public static void addWillChunk(int dim, Chunk chunk, short base, DemonWillHolder currentWill) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue