diff --git a/__init__.py b/__init__.py index 2447b50..1ca5b84 100644 --- a/__init__.py +++ b/__init__.py @@ -1 +1,6 @@ +import logging + +logger = logging.getLogger(__name__) + from .customcmd import * +from .twitch import setup as twitch_setup diff --git a/customcmd/__init__.py b/customcmd/__init__.py index 8c2efc5..881d340 100644 --- a/customcmd/__init__.py +++ b/customcmd/__init__.py @@ -1,6 +1,3 @@ -import logging +from .. import logger -logger = logging.getLogger(__name__) - -from .twitch import setup as twitch_setup from .parser import *