mirror of
https://github.com/microsoft/autogen.git
synced 2025-09-10 16:55:42 +00:00
8 lines
207 B
Python
8 lines
207 B
Python
![]() |
import logging
|
||
|
|
||
|
logger = logging.getLogger(__name__)
|
||
|
logger_formatter = logging.Formatter(
|
||
|
"[%(name)s: %(asctime)s] {%(lineno)d} %(levelname)s - %(message)s", "%m-%d %H:%M:%S"
|
||
|
)
|
||
|
logger.propagate = False
|