Changed log level of incoming EMS Boot requests to INFO

Change-Id: I48fa09b207c115ef7456aaea6a8259df865b37bb
This commit is contained in:
ipatini 2024-05-30 15:37:20 +03:00
parent e0569619b7
commit ecd1be7c6f

View File

@ -30,7 +30,7 @@ public class BootService {
void processEmsBootMessage(Command command, String appId, Publisher emsBootResponsePublisher) throws IOException {
// Process EMS Boot message
log.debug("Received a new EMS Boot message from external broker: {}", command.body());
log.info("Received a new EMS Boot message from external broker: {}", command.body());
// Load info from models store
Map<String, String> entry = indexService.getFromIndex(appId);