Switch to JSON structured logging

Change-Id: Ic44c801a807628ea4e3dcda0aef972c16797e5cd
This commit is contained in:
Rudi Schlatte
2024-02-19 13:41:35 +01:00
parent ef011f6ad1
commit 133d08b221
9 changed files with 60 additions and 40 deletions

View File

@@ -42,7 +42,7 @@ public class LocalExecution implements Callable<Integer> {
try {
msg = mapper.readTree(Files.readString(app_creation_msg, StandardCharsets.UTF_8));
} catch (IOException e) {
log.error("Could not read an input file: ", e);
log.error("Could not read an input file: {}", app_creation_msg, e);
return 1;
}
NebulousApp app = NebulousApp.newFromAppMessage(msg, connector);