Extra fix ray client newline (#13577)

This commit is contained in:
Eric Liang
2021-01-20 09:23:14 -08:00
committed by GitHub
parent 2e7c2b774f
commit e6412efdf5
+1 -1
View File
@@ -69,7 +69,7 @@ class LogstreamClient:
msg: The content of the message
"""
print_file = sys.stderr if level == -2 else sys.stdout
print(msg, file=print_file)
print(msg, file=print_file, end="")
def set_logstream_level(self, level: int):
logger.setLevel(level)