Skip to content

Commit 66ab180

Browse files
committed
Do not log data sent to socket
1 parent 8bf367d commit 66ab180

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/galaxy/api/jsonrpc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,8 +304,8 @@ async def send_task(data_):
304304

305305
try:
306306
line = self._encoder.encode(data)
307-
logging.debug("Sending data: %s", line)
308307
data = (line + "\n").encode("utf-8")
308+
logging.debug("Sending %d byte of data", len(data))
309309
self._task_manager.create_task(send_task(data), "send")
310310
except TypeError as error:
311311
logging.error(str(error))

0 commit comments

Comments
 (0)