switch from debug to info

This commit is contained in:
Infinidoge 2025-01-01 01:23:24 -05:00
parent cfb1b8449d
commit 66747982db
Signed by: Infinidoge
SSH key fingerprint: SHA256:EMoPe5e2dO0gEvtBb2xkZTz5dkyL0rBmuiGTKG5s96E
2 changed files with 2 additions and 2 deletions

View file

@ -11,7 +11,7 @@ from disnake.ext.commands import Cog, group, guild_only
from .utils import can_view, confirm, test_keyword
log = logging.getLogger("nomen.notifications")
log.setLevel(logging.DEBUG)
log.setLevel(logging.INFO)
log_ = log

View file

@ -10,7 +10,7 @@ from .notifications import KeywordError
from .utils import confirm
log = logging.getLogger("nomen.settings")
log.setLevel(logging.DEBUG)
log.setLevel(logging.INFO)
DUSTY_DATA_LINE = re.compile(r"^(.+) notified (\d+) times$")