mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-05 18:58:53 -05:00
12 lines
258 B
Python
12 lines
258 B
Python
import functools
|
|
import logging
|
|
import os
|
|
|
|
if os.getenv("RED_INSPECT_DRIVER_QUERIES"):
|
|
LOGGING_INVISIBLE = logging.DEBUG
|
|
else:
|
|
LOGGING_INVISIBLE = 0
|
|
|
|
log = logging.getLogger("red.driver")
|
|
log.invisible = functools.partial(log.log, LOGGING_INVISIBLE)
|