Less noisy

This commit is contained in:
Empathic Qubit 2021-11-05 10:21:34 +01:00
parent 8f3c1c65d8
commit f1b23958ce

View file

@ -855,7 +855,7 @@ return function(server)
processReset(command) processReset(command)
else else
server.errorResponse(server.errorType.CMD_INVALID_TYPE, command.requestId) server.errorResponse(server.errorType.CMD_INVALID_TYPE, command.requestId)
print(string.format("unknown command: %d, skipping command length %d", command.type, command.length)) print(string.format("unknown command: %02x, skipping command length %d", command.type, command.length))
end end
print(string.format("Command finished: %02x", command.type)) print(string.format("Command finished: %02x", command.type))
@ -878,8 +878,6 @@ return function(server)
server.deregisterFrameCallback() server.deregisterFrameCallback()
print("Break called by trap") print("Break called by trap")
emu.breakExecution() emu.breakExecution()
else
print("Server not running")
end end
end end