You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/src/Ombi.Helpers/LoggingEvents.cs

29 lines
1009 B

using Microsoft.Extensions.Logging;
namespace Ombi.Helpers
{
public class LoggingEvents
{
public static EventId Authentication => new EventId(500);
public static EventId ApiException => new EventId(1000);
public static EventId RadarrApiException => new EventId(1001);
public static EventId CacherException => new EventId(2000);
public static EventId RadarrCacherException => new EventId(2001);
public static EventId MovieSender => new EventId(3000);
public static EventId Notification => new EventId(4000);
public static EventId DiscordNotification => new EventId(4001);
public static EventId PushbulletNotification => new EventId(4002);
public static EventId SlackNotification => new EventId(4003);
public static EventId TvSender => new EventId(5000);
public static EventId SonarrSender => new EventId(5001);
public static EventId Updater => new EventId(6000);
}
}