[Minor] Logger is not error

This commit is contained in:
Robert von Burg 2023-09-19 09:48:20 +02:00
parent d9daad36f2
commit f1dde73da1
Signed by: eitch
GPG Key ID: 75DB9C85C74331F7
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ public class EventBasedExecutionHandler extends ExecutionHandler {
synchronized (this.controllers) {
Map<Locator, Controller> map = this.controllers.getMap(realm);
if (map == null) {
logger.error("No controllers for realm " + realm);
logger.info("No controllers for realm " + realm);
return;
}