Skip to content

Commit efb0dd0

Browse files
committed
feat(HttpServer): log executed commands in the request handler
1 parent 633fe98 commit efb0dd0

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/mindustrytool/handlers/HttpServer.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,7 @@ public void init() {
184184
String[] commands = context.bodyAsClass(String[].class);
185185
if (commands != null) {
186186
for (var command : commands) {
187+
Log.info("Execute: " + command);
187188
ServerCommandHandler.getHandler().handleMessage(command);
188189
}
189190
}

0 commit comments

Comments
 (0)