We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebfb656 commit d9039b0Copy full SHA for d9039b0
agent/agents.py
@@ -86,13 +86,13 @@ def run(
86
format="%(asctime)s - %(name)s - %(levelname)s - %(message)s",
87
)
88
89
- # Log the message
90
- logging.info(f"Message Sent: {message} \n\n")
91
-
92
# Redirect print statements to the log file
93
sys.stdout = open(log_file, "a")
94
sys.stderr = open(log_file, "a")
95
+ # Log the message
+ logging.info(f"Message Sent: {message} \n\n")
+
96
# Configure httpx and backoff logging
97
handle_logging("httpx", log_file)
98
handle_logging("backoff", log_file)
0 commit comments