Я написал:
.
.
.
//Log exception to the event log
if (!EventLog.SourceExists("PodaHIS")) {
EventLog.CreateEventSource("PodaHIS", "Application");
}
EventLog eventLog = new EventLog();
eventLog.Log = "Application";
eventLog.Source = "PodaHIS";
eventLog.WriteEntry(error.ToString(), EventLogEntryType.Error);
Я также включил разрешение на чтение для LOCALMACHINE \ ASPNET.
И взамен я получаю:
The source was not found, but some or all event logs could not be searched. Inaccesible logs: Security.
Кто-нибудь знает, почему это происходит?