log on_join function

This commit is contained in:
Emmanuel Garette 2020-01-31 11:34:27 +01:00
parent ab71686633
commit 251b521274
2 changed files with 6 additions and 1 deletions

View File

@ -351,7 +351,7 @@ class Dispatcher(register.RegisterDispatcher, CallDispatcher, PublishDispatcher)
await log.info_msg(risotto_context,
{'arguments': kwargs,
'returns': returns},
info_msg)
info_msg)
# notification
if function_obj.get('notification'):
notif_version, notif_message = function_obj['notification'].split('.', 1)

View File

@ -9,6 +9,7 @@ from .error import RegistrationError
from .message import get_messages
from .context import Context
from .config import INTERNAL_USER, get_config
from .logger import log
def register(uris: str,
@ -234,6 +235,10 @@ class RegisterDispatcher:
risotto_context.paths.append(f'{module_name}.on_join')
risotto_context.type = None
risotto_context.connection = connection
info_msg = _(f'in module {module_name}.on_join')
await log.info_msg(risotto_context,
None,
info_msg)
await module.on_join(risotto_context)
async def insert_message(self,