File size: 333 Bytes
463f868
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
def main():
    try:
        with open("strict_debug_log.txt", "r", encoding="utf-8", errors="ignore") as f:
            for line in f:
                if "DEBUG:" in line:
                    print(line.strip())
    except Exception as e:
        print(f"Error reading log: {e}")


if __name__ == "__main__":
    main()