The following does not work as Mellea still does info outputs afterwards
logging.getLogger('fancy_logger').setLevel(logging.WARNING)
The following works because it sets it back to warning
m = MelleaSession(backend=LiteLLMBackend(model_id=os.getenv("MODEL_ID_LITELLM")))
logging.getLogger('fancy_logger').setLevel(logging.WARNING)