LttPClient: remove accidental logger remnant #2

This commit is contained in:
Fabian Dill 2021-11-03 23:27:09 +01:00
parent c336cdc5df
commit 6b0b78d8e0
1 changed files with 0 additions and 1 deletions

View File

@ -716,7 +716,6 @@ async def snes_write(ctx: Context, write_list):
for address, data in write_list:
PutAddress_Request['Operands'] = [hex(address)[2:], hex(len(data))[2:]]
if ctx.snes_socket is not None:
snes_logger.info((PutAddress_Request, data))
await ctx.snes_socket.send(dumps(PutAddress_Request))
await ctx.snes_socket.send(data)
else: