mirror of
https://github.com/microsoft/autogen.git
synced 2025-11-05 12:23:24 +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
|