Skip to content

Commit 90f31a4

Browse files
committed
Banished the disable alert to the debug realm
1 parent e1ead61 commit 90f31a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/falsepattern/chunk/internal/ChunkDataRegistryImpl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ public static void disableDataManager(String domain, String id) {
7070
throw new IllegalStateException("ChunkDataManager disabling is not allowed at this time! " +
7171
"Please disable any ChunkDataManagers in the postInit phase.");
7272
}
73-
Common.LOG.warn("Disabling ChunkDataManager " + id + " in domain " + domain +
74-
". See the stacktrace for the source of this event.", new Throwable());
73+
Common.LOG.debug("Disabling ChunkDataManager " + id + " in domain " + domain +
74+
". See the stacktrace for the source of this event.\nThis is NOT an error.", new Throwable());
7575
val manager = domain + ":" + id;
7676
//Remove the manager from the list of managers, if it exists
7777
if (managers.remove(manager)) {

0 commit comments

Comments
 (0)