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 d9039b0 commit c34bde7Copy full SHA for c34bde7
agent/agents.py
@@ -91,7 +91,9 @@ def run(
91
sys.stderr = open(log_file, "a")
92
93
# Log the message
94
- logging.info(f"Message Sent: {message} \n\n")
+ agent_message_log_file = log_dir / "agent_message.log"
95
+ with open(agent_message_log_file, "a") as f:
96
+ f.write(f"Message Sent: {message}\n\n")
97
98
# Configure httpx and backoff logging
99
handle_logging("httpx", log_file)
0 commit comments