MCPcopy Create free account
hub / github.com/casualsnek/waydroid_script / Logger

Class Logger

tools/logger.py:1–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1class Logger:
2
3 @staticmethod
4 def error(str):
5 print("\033[31m"+"ERROR: "+str+"\033[0m")
6
7 @staticmethod
8 def info(str):
9 print("\033[32m"+"INFO: "+"\033[0m"+str)
10
11 @staticmethod
12 def warning(str):
13 print("\033[33m"+"WARN: "+str+"\033[0m")

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected