Skip to content

Commit bbf6269

Browse files
committed
removed DEBUG logging
1 parent aa25527 commit bbf6269

4 files changed

Lines changed: 0 additions & 8 deletions

File tree

openai_agents/run_agents_as_tools_workflow.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111

1212
async def main():
13-
logging.basicConfig(level=logging.DEBUG)
14-
1513
# Create client connected to server at the given address
1614
client = await Client.connect("localhost:7233", data_converter=open_ai_data_converter)
1715

openai_agents/run_hello_world_workflow.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111

1212
async def main():
13-
logging.basicConfig(level=logging.DEBUG)
14-
1513
# Create client connected to server at the given address
1614
client = await Client.connect("localhost:7233",
1715
data_converter=open_ai_data_converter,

openai_agents/run_research_workflow.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
from openai_agents.workflows.research_bot_workflow import ResearchWorkflow
99

1010
async def main():
11-
logging.basicConfig(level=logging.DEBUG)
12-
1311
# Create client connected to server at the given address
1412
client = await Client.connect(
1513
"localhost:7233",

openai_agents/run_tools_workflow.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99

1010

1111
async def main():
12-
logging.basicConfig(level=logging.DEBUG)
13-
1412
# Create client connected to server at the given address
1513
client = await Client.connect(
1614
"localhost:7233",

0 commit comments

Comments
 (0)