mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -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 <>
47 lines
1.7 KiB
C#
47 lines
1.7 KiB
C#
using AspNetCoreRateLimit;
|
|
using Bit.Core.Utilities;
|
|
using Microsoft.IdentityModel.Tokens;
|
|
|
|
namespace Bit.Api;
|
|
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
Host
|
|
.CreateDefaultBuilder(args)
|
|
.ConfigureCustomAppConfiguration(args)
|
|
.ConfigureWebHostDefaults(webBuilder =>
|
|
{
|
|
webBuilder.UseStartup<Startup>();
|
|
webBuilder.ConfigureLogging((hostingContext, logging) =>
|
|
logging.AddSerilog(hostingContext, (e, globalSettings) =>
|
|
{
|
|
var context = e.Properties["SourceContext"].ToString();
|
|
if (e.Exception != null &&
|
|
(e.Exception.GetType() == typeof(SecurityTokenValidationException) ||
|
|
e.Exception.Message == "Bad security stamp."))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
if (
|
|
context.Contains(typeof(IpRateLimitMiddleware).FullName))
|
|
{
|
|
return e.Level >= globalSettings.MinLogLevel.ApiSettings.IpRateLimit;
|
|
}
|
|
|
|
if (context.Contains("IdentityServer4.Validation.TokenValidator") ||
|
|
context.Contains("IdentityServer4.Validation.TokenRequestValidator"))
|
|
{
|
|
return e.Level >= globalSettings.MinLogLevel.ApiSettings.IdentityToken;
|
|
}
|
|
|
|
return e.Level >= globalSettings.MinLogLevel.ApiSettings.Default;
|
|
}));
|
|
})
|
|
.Build()
|
|
.Run();
|
|
}
|
|
}
|