Am using odoo10. In the models/models.py file I have the following:
from connector.event import on_record_create
@on_record_create
def on_create_trigger(session, model_name, record_id, vals):
print model_name
I have installed the queue_job module and the connector module without errors. But, when I create a new user and hit the save button doesn't print anything. What am I doing wrong?