Beispiel #1
0
 public bool LogEvent(IOrganizationIdForEventLog organizationId, ExEventLog.EventTuple tuple, string periodicKey, object arg0)
 {
     return(this.LogEvent(organizationId, tuple, periodicKey, new object[]
     {
         arg0
     }));
 }
Beispiel #2
0
 public bool LogEvent(IOrganizationIdForEventLog organizationId, ExEventLog.EventTuple tuple, string periodicKey, out bool fEventSuppressed, params object[] messageArgs)
 {
     if (organizationId != null && !string.IsNullOrEmpty(organizationId.IdForEventLog) && tuple.Period == ExEventLog.EventPeriod.LogOneTime)
     {
         throw new ArgumentException("Per-tenant one-time events are not supported.", "tuple");
     }
     return(this.impl.LogEvent((organizationId != null) ? organizationId.IdForEventLog : string.Empty, tuple.EventId, tuple.CategoryId, tuple.Level, tuple.EntryType, tuple.Period, periodicKey, out fEventSuppressed, null, messageArgs));
 }
Beispiel #3
0
 public bool LogEvent(IOrganizationIdForEventLog organizationId, ExEventLog.EventTuple tuple, string periodicKey, object arg0, object arg1, object arg2, object arg3)
 {
     return(this.eventLog.LogEvent(organizationId, tuple, periodicKey, new object[]
     {
         periodicKey,
         arg0,
         arg1,
         arg2,
         arg3
     }));
 }
 public static void LogEvent(IOrganizationIdForEventLog organizationId, ExEventLog.EventTuple tuple, string periodicKey, params object[] messageArgs)
 {
     StoreDriverDeliveryDiagnostics.eventLogger.LogEvent(organizationId, tuple, periodicKey, messageArgs);
 }
Beispiel #5
0
 public bool LogEvent(IOrganizationIdForEventLog organizationId, ExEventLog.EventTuple tuple, string periodicKey, out bool fEventSuppressed, params object[] messageArgs)
 {
     return(this.eventLog.LogEvent(organizationId, tuple, periodicKey, out fEventSuppressed, messageArgs));
 }
 public static void LogEvent(IOrganizationIdForEventLog organizationId, ExEventLog.EventTuple eventInfo, params string[] messageArguments)
 {
     ExManagementApplicationLogger.eventLogger.LogEvent(organizationId, eventInfo, null, messageArguments);
     ExTraceGlobals.EventTracer.Information <string[]>(0L, eventInfo.ToString(), messageArguments);
 }