diff --git a/checker.py b/checker.py index eaba1e7..9c0c82a 100644 --- a/checker.py +++ b/checker.py @@ -133,7 +133,7 @@ class GRIST: def check_logs(log_handler): try: - logs = subprocess.run(['docker', 'logs', '--since', '10m', 'infernet-node'], capture_output=True, text=True, check=True) + logs = subprocess.run(['docker', 'logs', '--since', '10m', '--no-color', 'infernet-node'], capture_output=True, text=True, check=True) log_content = logs.stdout except subprocess.CalledProcessError as e: raise RuntimeError(f"Error running docker logs: {e}")