Revert to using Warning loglevel as default

This commit is contained in:
Pragyansh Chaturvedi
2025-10-03 17:35:57 +05:30
parent cc626c38f7
commit c3db609a90

View File

@ -121,7 +121,7 @@ def compile_to_ir(filename: str, output: str, loglevel=logging.WARNING):
return output
def compile(loglevel=logging.INFO) -> bool:
def compile(loglevel=logging.WARNING) -> bool:
# Look one level up the stack to the caller of this function
caller_frame = inspect.stack()[1]
caller_file = Path(caller_frame.filename).resolve()