mirror of
https://github.com/bitwarden/server.git
synced 2024-12-04 14:13:28 +01:00
49 lines
1.7 KiB
C#
49 lines
1.7 KiB
C#
using Microsoft.AspNetCore.Hosting;
|
|
using Microsoft.Extensions.Logging;
|
|
using Serilog;
|
|
using Serilog.Events;
|
|
using System;
|
|
|
|
namespace Bit.Core.Utilities
|
|
{
|
|
public static class LoggerFactoryExtensions
|
|
{
|
|
public static ILoggerFactory AddSerilog(
|
|
this ILoggerFactory factory,
|
|
IHostingEnvironment env,
|
|
IApplicationLifetime appLifetime,
|
|
GlobalSettings globalSettings,
|
|
Func<LogEvent, bool> filter = null)
|
|
{
|
|
if(!env.IsDevelopment())
|
|
{
|
|
if(filter == null)
|
|
{
|
|
filter = (e) => true;
|
|
}
|
|
|
|
var config = new LoggerConfiguration()
|
|
.Enrich.FromLogContext()
|
|
.Filter.ByIncludingOnly(filter);
|
|
|
|
if(globalSettings.DocumentDb != null && CoreHelpers.SettingHasValue(globalSettings.DocumentDb.Uri) &&
|
|
CoreHelpers.SettingHasValue(globalSettings.DocumentDb.Key))
|
|
{
|
|
config.WriteTo.AzureDocumentDB(new Uri(globalSettings.DocumentDb.Uri), globalSettings.DocumentDb.Key,
|
|
timeToLive: TimeSpan.FromDays(7));
|
|
}
|
|
else if(CoreHelpers.SettingHasValue(globalSettings.LogDirectory))
|
|
{
|
|
config.WriteTo.RollingFile($"{globalSettings.LogDirectory}/{globalSettings.ProjectName}/{{Date}}.txt");
|
|
}
|
|
|
|
var serilog = config.CreateLogger();
|
|
factory.AddSerilog(serilog);
|
|
appLifetime.ApplicationStopped.Register(Log.CloseAndFlush);
|
|
}
|
|
|
|
return factory;
|
|
}
|
|
}
|
|
}
|