I have been developing a module using Dnn 3.2 on vs 2003
I am using the event logs to notify the portal admin if there is no data available to render in the module and other messages that do not form part of an exception.
I am using the following code
// notify admins that No Data is available to be rendered.
EventLogController logger = new EventLogController();
logger.AddLog("Custom Module Data", "No Data Available", this.PortalSettings, this.UserId, EventLogController.EventLogType.ADMIN_ALERT);
On my local 3.2 DNN Developer Build running on asp.net 1.1 it works fine and I see the message in the Admin Alert Event Type.
However on a test server running DNN 04.03.00 on asp.net 2.0 the "Admin Alert" Event Log Type appears as a "Scheduler Shutting Down" Event Log Type. The Message writes out fine. Its just appearing as a different Event Type.
Has there been a change ? If so, is there some documentation on it ?
In my Module will I have to check for the DNN verson and adjust my Event Type Accordingly ?
Hope someone can help
Eamonn