You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Triggers are simple DI enabled services, therefore logging can be enabled using
publicclassMyComplexTrigger:IBeforeSaveTrigger<Customer>{readonlyILogger_logger;publicMyComplexTrigger(ILogger<MyComplexTrigger>logger){_logger=logger;}publicTaskBeforeSave(ITriggerContext<Customer>context,CancellationTokencancellationToken){this._logger.LogInformation("Something is happening!");}}