Fix build log not having space after timestamp
This commit is contained in:
parent
0a449d168d
commit
51afe3a2b0
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue