CoolFace
Apppublic

piealamodewhitebread/SillyTavern-Extras1

sourceHugging Facemitupdated 3y agoView on Hugging Face
0likes
utils.py15 linesDownload Raw Back to modules
1 2from contextlib import contextmanager3import sys4 5@contextmanager6def silence_log():7    old_stdout = sys.stdout8    old_stderr = sys.stderr9    try:10        with open(os.devnull, "w") as new_target:11            sys.stdout = new_target12            yield new_target13    finally:14        sys.stdout = old_stdout15        sys.stderr = old_stderr