mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 01:43:08 +09:00
8 lines
166 B
Python
8 lines
166 B
Python
import logging
|
|
|
|
logger = logging.getLogger("manifest")
|
|
logger.addHandler(logging.StreamHandler())
|
|
logger.setLevel(logging.DEBUG)
|
|
|
|
def get_logger():
|
|
return logger
|