Class CoreLogEvents
- Namespace
- Silverback.Diagnostics
- Assembly
- Silverback.Core.dll
Contains the LogEvent constants of all events logged by the Silverback.Core package.
public static class CoreLogEvents
- Inheritance
-
CoreLogEvents
- Inherited Members
Properties
AcquireLockConcurrencyException
Gets the LogEvent representing the log that is written when a concurrency related exception occurs while trying to acquire a lock. This is usually not an issue and just means that the lock was acquired by another instance in the meantime.
public static LogEvent AcquireLockConcurrencyException { get; }
Property Value
AcquireLockFailed
Gets the LogEvent representing the log that is written when an exception occurs while trying to acquire a lock.
public static LogEvent AcquireLockFailed { get; }
Property Value
BackgroundServiceException
Gets the LogEvent representing the log that is written when an error occurs executing the DistributedBackgroundService.
public static LogEvent BackgroundServiceException { get; }
Property Value
BackgroundServiceStarting
Gets the LogEvent representing the log that is written the DistributedBackgroundService is starting.
public static LogEvent BackgroundServiceStarting { get; }
Property Value
LockAcquired
Gets the LogEvent representing the log that is written when a distributed lock is acquired by the current instance.
public static LogEvent LockAcquired { get; }
Property Value
LockLost
Gets the LogEvent representing the log that is written when a distributed lock is lost.
public static LogEvent LockLost { get; }
Property Value
LockReleased
Gets the LogEvent representing the log that is written when a distributed lock is released.
public static LogEvent LockReleased { get; }
Property Value
RecurringBackgroundServiceSleeping
Gets the LogEvent representing the log that is written when the RecurringDistributedBackgroundService is sleeping in between the executions.
public static LogEvent RecurringBackgroundServiceSleeping { get; }
Property Value
RecurringBackgroundServiceStopped
Gets the LogEvent representing the log that is written when the RecurringDistributedBackgroundService is stopped.
public static LogEvent RecurringBackgroundServiceStopped { get; }
Property Value
ReleaseLockFailed
Gets the LogEvent representing the log that is written when an exception occurs while trying to release a lock.
public static LogEvent ReleaseLockFailed { get; }
Property Value
SubscriberResultDiscarded
Gets the LogEvent representing the log that is written when the IPublisher discards the return value of a subscribed method because it doesn't match with the expected return type.
public static LogEvent SubscriberResultDiscarded { get; }