Co-authored-by: defnotken <itsdefnotken@gmail.com> Co-authored-by: cake <admin@cakeandbanana.nl> Reviewed-on: #88 Reviewed-by: cake <cake@noreply.git.lightless-sync.org> Co-authored-by: defnotken <defnotken@noreply.git.lightless-sync.org> Co-committed-by: defnotken <defnotken@noreply.git.lightless-sync.org>
62 lines
2.3 KiB
C#
62 lines
2.3 KiB
C#
using Dalamud.Plugin.Services;
|
|
using LightlessSync.LightlessConfiguration;
|
|
using Microsoft.Extensions.Logging;
|
|
using System.Text;
|
|
|
|
namespace LightlessSync.Interop;
|
|
|
|
internal sealed class DalamudLogger : ILogger
|
|
{
|
|
private readonly LightlessConfigService _lightlessConfigService;
|
|
private readonly string _name;
|
|
private readonly IPluginLog _pluginLog;
|
|
private readonly bool _hasModifiedGameFiles;
|
|
|
|
public DalamudLogger(string name, LightlessConfigService lightlessConfigService, IPluginLog pluginLog, bool hasModifiedGameFiles)
|
|
{
|
|
_name = name;
|
|
_lightlessConfigService = lightlessConfigService;
|
|
_pluginLog = pluginLog;
|
|
_hasModifiedGameFiles = hasModifiedGameFiles;
|
|
}
|
|
|
|
IDisposable? ILogger.BeginScope<TState>(TState state)
|
|
{
|
|
return default!;
|
|
}
|
|
|
|
public bool IsEnabled(LogLevel logLevel)
|
|
{
|
|
return (int)_lightlessConfigService.Current.LogLevel <= (int)logLevel;
|
|
}
|
|
|
|
public void Log<TState>(LogLevel logLevel, EventId eventId, TState state, Exception? exception, Func<TState, Exception?, string> formatter)
|
|
{
|
|
if (!IsEnabled(logLevel)) return;
|
|
|
|
string unsupported = _hasModifiedGameFiles ? "[UNSUPPORTED]" : string.Empty;
|
|
|
|
if ((int)logLevel <= (int)LogLevel.Information)
|
|
_pluginLog.Information($"{unsupported}[{_name}]{{{(int)logLevel}}} {state}{(_hasModifiedGameFiles ? "." : string.Empty)}");
|
|
else
|
|
{
|
|
StringBuilder sb = new();
|
|
sb.Append($"{unsupported}[{_name}]{{{(int)logLevel}}} {state}{(_hasModifiedGameFiles ? "." : string.Empty)} {exception?.Message}");
|
|
if (!string.IsNullOrWhiteSpace(exception?.StackTrace))
|
|
sb.AppendLine(exception?.StackTrace);
|
|
var innerException = exception?.InnerException;
|
|
while (innerException != null)
|
|
{
|
|
sb.AppendLine($"InnerException {innerException}: {innerException.Message}");
|
|
sb.AppendLine(innerException.StackTrace);
|
|
innerException = innerException.InnerException;
|
|
}
|
|
if (logLevel == LogLevel.Warning)
|
|
_pluginLog.Warning(sb.ToString());
|
|
else if (logLevel == LogLevel.Error)
|
|
_pluginLog.Error(sb.ToString());
|
|
else
|
|
_pluginLog.Fatal(sb.ToString());
|
|
}
|
|
}
|
|
} |