Fix build log not having space after timestamp

This commit is contained in:
Stephen Seo 2023-09-11 10:39:05 +09:00
parent 0a449d168d
commit 51afe3a2b0
1 changed files with 1 additions and 1 deletions

View File

@ -1145,7 +1145,7 @@ def handle_output_stream(
if not limit_reached:
if other_state["is_log_timed"]:
nowstring = get_datetime_timezone_now(other_state)
line = nowstring + line
line = nowstring + " " + line
log_count += len(line)
if log_count > other_state["log_limit"]:
limit_reached = True