Tailing logs needs a bit more width for new task servers.

This commit is contained in:
Samuel Clay 2024-02-18 08:23:41 -05:00
parent 7bd7d4ba9d
commit fe708196ee

View file

@ -130,7 +130,7 @@ def read_streams(streams):
streams.remove(stream)
break
try:
combination_message = "[%-15s] %s" % (stream.name[:13], data.decode())
combination_message = "[%-15s] %s" % (stream.name[:15], data.decode())
except UnicodeDecodeError:
continue
sys.stdout.write(combination_message)