set logging level (to Info)

This commit is contained in:
Joshua Smith
2025-03-14 10:12:09 -04:00
parent f767cfdc51
commit 7153c5308a

View File

@@ -2,6 +2,7 @@ import asyncio
import concurrent.futures
import os
from dotenv import load_dotenv
import logging
from temporalio.worker import Worker
@@ -48,6 +49,9 @@ async def main():
print("===========================================================\n")
print("Worker ready to process tasks!")
logging.basicConfig(level=logging.INFO)
# Run the worker
with concurrent.futures.ThreadPoolExecutor(max_workers=100) as activity_executor: