mirror of
https://github.com/Radarr/Radarr
synced 2025-01-03 22:04:43 +00:00
4bb4faf626
Still need to remove System.Data.Sqlite, prefer an option in OrmLite to pluralize table names.
19 lines
439 B
C#
19 lines
439 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using FluentMigrator.Runner.Announcers;
|
|
using NLog;
|
|
|
|
namespace NzbDrone.Core.Datastore
|
|
{
|
|
public class NlogAnnouncer : Announcer
|
|
{
|
|
private static readonly Logger logger = LogManager.GetCurrentClassLogger();
|
|
|
|
public override void Write(string message, bool escaped)
|
|
{
|
|
logger.Info(message);
|
|
}
|
|
}
|
|
}
|