|
@@ -8,8 +8,6 @@ import aiohttp
|
|
|
|
|
|
from .types import CommandConfiguration, Message, Response, Context, Command
|
|
|
|
|
|
-# TODO logging config
|
|
|
-
|
|
|
|
|
|
RawMsg = TypeVar("RawMsg")
|
|
|
|
|
@@ -25,7 +23,7 @@ class Rollbot(Generic[RawMsg]):
|
|
|
respond=self.respond,
|
|
|
request=aiohttp.ClientSession(),
|
|
|
database=lambda: aiosqlite.connect(self.database_file),
|
|
|
- logger=logging.getLogger(__name__),
|
|
|
+ logger=logging.getLogger(),
|
|
|
)
|
|
|
|
|
|
def read_config(self, key: str) -> Any:
|