mirror of
https://github.com/InternLM/InternBootcamp.git
synced 2026-04-19 12:58:04 +00:00
9 lines
No EOL
182 B
Python
Executable file
9 lines
No EOL
182 B
Python
Executable file
class output_log:
|
|
def __init__(self):
|
|
self.output_str = ""
|
|
|
|
def log(self,text):
|
|
self.output_str += text
|
|
|
|
def get_log(self):
|
|
return self.output_str |