Skip to content

Commit 0542abc

Browse files
committed
add linesep aft log breakpoint
1 parent 22ac475 commit 0542abc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

robotcode/debugger/debugger.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from __future__ import annotations
22

33
import itertools
4+
import os
45
import pathlib
56
import re
67
import threading
@@ -511,7 +512,7 @@ def process_start_state(self, source: str, line_no: int, type: str, status: str)
511512
self,
512513
OutputEvent(
513514
body=OutputEventBody(
514-
output=message,
515+
output=message + os.linesep,
515516
category=OutputCategory.CONSOLE,
516517
source=Source(path=source) if source else None,
517518
line=line_no,

0 commit comments

Comments
 (0)