7 lines
59 B
Python
7 lines
59 B
Python
|
|
class Logger:
|
|
|
|
@staticmethod
|
|
def log(msg):
|
|
print(msg)
|