Scrivere negli eventi di windows


static void wLog(string msg)
{
try
{
if(!EventLog.SourceExists("Setup"))
{
EventLog.CreateEventSource("Setup", "DevEnne");
}
EventLog myLog = new EventLog();
myLog.Source = "Setup";

myLog.WriteEntry(msg, EventLogEntryType.Information);
}
catch
{
// gestione errori
}
}

0 commenti:

Posta un commento