Skip to content
Snippets Groups Projects
Verified Commit 2f3691d4 authored by Nicolas KAROLAK's avatar Nicolas KAROLAK
Browse files

write warnings and errors in stderr

parent 0c1eb4d1
No related branches found
No related tags found
No related merge requests found
......@@ -62,7 +62,7 @@ def warning(message: str):
:type message: str
"""
log(" {}⚠{} {}".format(YELLOW, DEF, message))
log(" {}⚠{} {}".format(YELLOW, DEF, message), True)
def error(message: str):
......@@ -72,7 +72,7 @@ def error(message: str):
:type message: str
"""
log(" {}✖{} {}".format(RED, DEF, message))
log(" {}✖{} {}".format(RED, DEF, message), True)
def get_dir(file_path: str) -> str:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment