Revert logging level to INFO and remove debug code

This commit is contained in:
ChuckBuilds
2025-04-17 09:58:24 -05:00
parent 22f21093f2
commit 866a1f9901
2 changed files with 1 additions and 7 deletions

View File

@@ -9,7 +9,7 @@ from src.stock_manager import StockManager
from src.stock_news_manager import StockNewsManager
# Configure logging
logging.basicConfig(level=logging.DEBUG, force=True)
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)
class DisplayController: