don't run Eventlogging by default -- the tests instantiate it, though.

This commit is contained in:
holger krekel
2020-02-22 23:29:21 +01:00
parent d3c6f530e2
commit ce00c627d4
5 changed files with 78 additions and 64 deletions

View File

@@ -27,6 +27,10 @@ class PerAccount:
def process_low_level_event(self, event_name, data1, data2):
""" process a CFFI low level events for a given account. """
@account_hookspec
def log_line(self, message):
""" log a message related to the account. """
@account_hookspec
def configure_completed(self, success):
""" Called when a configure process completed. """
@@ -47,5 +51,5 @@ class Global:
return cls._plugin_manager
@global_hookspec
def at_account_init(self, account, logid):
def at_account_init(self, account):
""" called when `Account::__init__()` function starts executing. """