mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 13:38:13 -05:00

* Add logging to token usages * Add settings manipulation of log levels * Maintain no logging for dev * Log exception causing Token failure in TryUnprotect * dotnet format 🤖 * Added deconstruction operator on new debug logs. * Split off log level settings into separate files * Improve log messages * dotnet format 🤖 * Fix token serialization * Final review notes Co-authored-by: Todd Martin <>
37 lines
1.3 KiB
C#
37 lines
1.3 KiB
C#
using Bit.Core.Utilities;
|
|
|
|
namespace Bit.Billing;
|
|
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
Host
|
|
.CreateDefaultBuilder(args)
|
|
.ConfigureWebHostDefaults(webBuilder =>
|
|
{
|
|
webBuilder.UseStartup<Startup>();
|
|
webBuilder.ConfigureLogging((hostingContext, logging) =>
|
|
logging.AddSerilog(hostingContext, (e, globalSettings) =>
|
|
{
|
|
var context = e.Properties["SourceContext"].ToString();
|
|
if (context.StartsWith("\"Bit.Billing.Jobs") || context.StartsWith("\"Bit.Core.Jobs"))
|
|
{
|
|
return e.Level >= globalSettings.MinLogLevel.BillingSettings.Jobs;
|
|
}
|
|
|
|
if (e.Properties.ContainsKey("RequestPath") &&
|
|
!string.IsNullOrWhiteSpace(e.Properties["RequestPath"]?.ToString()) &&
|
|
(context.Contains(".Server.Kestrel") || context.Contains(".Core.IISHttpServer")))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
return e.Level >= globalSettings.MinLogLevel.BillingSettings.Default;
|
|
}));
|
|
})
|
|
.Build()
|
|
.Run();
|
|
}
|
|
}
|