mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-12-01 09:34:46 +08:00
11 lines
264 B
Python
11 lines
264 B
Python
from filter import add_filter
|
|
|
|
|
|
def _log_message(ctx_msg):
|
|
print(ctx_msg.get('sender', '')
|
|
+ (('@' + ctx_msg.get('group')) if ctx_msg.get('type') == 'group_message' else '')
|
|
+ ': ' + ctx_msg.get('content'))
|
|
|
|
|
|
add_filter(_log_message, 1000)
|