Skip to content

Instantly share code, notes, and snippets.

@AsthOfAether
AsthOfAether / logger.py
Created July 11, 2021 17:05 — forked from Willy-JL/logger.py
Log console output and input to file without custom color codes (supports colorama)
from contextlib import contextmanager
import sys
import re
# Backup original functionality
_stdout = sys.stdout
_stderr = sys.stderr
_stdin = sys.stdin
# Used to temporarily stop output to log file