K
Kimmo Laine
Hello,
is it possible, when creating new Event log (C#), to specify the log size or
other related options.
if( !EventLog.SourceExists( sourceName ) ) {
EventLog.CreateEventSource( sourceName, logName );
}
m_Log = new EventLog();
m_Log.Source = sourceName;
// ...
tfx
Kimmo Laine
is it possible, when creating new Event log (C#), to specify the log size or
other related options.
if( !EventLog.SourceExists( sourceName ) ) {
EventLog.CreateEventSource( sourceName, logName );
}
m_Log = new EventLog();
m_Log.Source = sourceName;
// ...
tfx
Kimmo Laine