remove year and date from logging

This commit is contained in:
ChuckBuilds
2025-04-23 14:44:09 -05:00
parent 2eb08e2729
commit c4351ed9cc

View File

@@ -7,7 +7,7 @@ from typing import Dict, Any
logging.basicConfig( logging.basicConfig(
level=logging.DEBUG, level=logging.DEBUG,
format='%(asctime)s.%(msecs)03d - %(levelname)s:%(name)s:%(message)s', format='%(asctime)s.%(msecs)03d - %(levelname)s:%(name)s:%(message)s',
datefmt='%Y-%m-%d %H:%M:%S', datefmt='%H:%M:%S',
stream=sys.stdout stream=sys.stdout
) )