diff options
author | Kyomotoi <[email protected]> | 2023-03-07 15:36:53 +0800 |
---|---|---|
committer | Kyomotoi <[email protected]> | 2023-03-07 15:36:53 +0800 |
commit | 352c7d5b42ad432a8ed4bc7939636da62703e982 (patch) | |
tree | d3cb2c0d0b7fb9e75bacb3592d46a87f07f17ce6 /ATRI | |
parent | 95e7b6fe5f41a8b91a7ef6ae55ed976177d64ae9 (diff) | |
download | ATRI-352c7d5b42ad432a8ed4bc7939636da62703e982.tar.gz ATRI-352c7d5b42ad432a8ed4bc7939636da62703e982.tar.bz2 ATRI-352c7d5b42ad432a8ed4bc7939636da62703e982.zip |
🚑️ 激活注入
Diffstat (limited to 'ATRI')
-rw-r--r-- | ATRI/patch.py | 2 | ||||
-rw-r--r-- | ATRI/plugins/__init__.py | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/ATRI/patch.py b/ATRI/patch.py index ae203de..e208cae 100644 --- a/ATRI/patch.py +++ b/ATRI/patch.py @@ -51,7 +51,7 @@ async def simple_run( except StopPropagation: self.block = True finally: - logger.info(f"{self} running complete") + logger.debug(f"{self} running complete") current_bot.reset(b_t) current_event.reset(e_t) current_matcher.reset(m_t) diff --git a/ATRI/plugins/__init__.py b/ATRI/plugins/__init__.py index 620b825..327855b 100644 --- a/ATRI/plugins/__init__.py +++ b/ATRI/plugins/__init__.py @@ -6,6 +6,8 @@ from ATRI.database import init_database, close_database_connection from time import sleep +from ATRI.patch import * + driver = ATRI.driver() |