add audit EventType strings

This commit is contained in:
Doug MacEachern 2007-08-28 04:43:11 +00:00
parent fe4080c460
commit 73b291cdb9
1 changed files with 4 additions and 0 deletions

View File

@ -103,6 +103,10 @@ public class EventLogRecord {
return "Warning";
case EventLog.EVENTLOG_INFORMATION_TYPE:
return "Information";
case EventLog.EVENTLOG_AUDIT_SUCCESS:
return "Success Audit";
case EventLog.EVENTLOG_AUDIT_FAILURE:
return "Failure Audit";
default:
return "Unknown";
}