We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bf367d commit 66ab180Copy full SHA for 66ab180
1 file changed
src/galaxy/api/jsonrpc.py
@@ -304,8 +304,8 @@ async def send_task(data_):
304
305
try:
306
line = self._encoder.encode(data)
307
- logging.debug("Sending data: %s", line)
308
data = (line + "\n").encode("utf-8")
+ logging.debug("Sending %d byte of data", len(data))
309
self._task_manager.create_task(send_task(data), "send")
310
except TypeError as error:
311
logging.error(str(error))
0 commit comments