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.
53 lines
1.3 KiB
53 lines
1.3 KiB
using System;
|
|
using NLog;
|
|
using NLog.Targets;
|
|
using PetaPoco;
|
|
|
|
namespace NzbDrone.Core.Instrumentation
|
|
{
|
|
public class SubsonicTarget : Target
|
|
{
|
|
private readonly IDatabase _database;
|
|
|
|
public SubsonicTarget(IDatabase database)
|
|
{
|
|
_database = database;
|
|
}
|
|
|
|
protected override void Write(LogEventInfo logEvent)
|
|
{
|
|
var log = new Log();
|
|
log.Time = logEvent.TimeStamp;
|
|
log.Message = logEvent.FormattedMessage;
|
|
|
|
if (logEvent.UserStackFrame != null)
|
|
{
|
|
log.Method = logEvent.UserStackFrame.GetMethod().Name;
|
|
}
|
|
|
|
log.Logger = logEvent.LoggerName;
|
|
|
|
if (logEvent.Exception != null)
|
|
{
|
|
if (String.IsNullOrWhiteSpace(log.Message))
|
|
{
|
|
log.Message = logEvent.Exception.Message;
|
|
}
|
|
else
|
|
{
|
|
log.Message += ": " + logEvent.Exception.Message;
|
|
}
|
|
|
|
|
|
log.Exception = logEvent.Exception.ToString();
|
|
log.ExceptionType = logEvent.Exception.GetType().ToString();
|
|
}
|
|
|
|
|
|
log.Level = logEvent.Level.Name;
|
|
|
|
|
|
_database.Insert(log);
|
|
}
|
|
}
|
|
} |