Files
EonaCat.LogStack/EonaCat.LogStack/EonaCatLoggerCore/Boosters/DateBooster.cs
2026-02-27 21:12:55 +01:00

22 lines
706 B
C#

using EonaCat.LogStack.Core;
using System;
using System.Runtime.CompilerServices;
namespace EonaCat.LogStack.Boosters
{
// This file is part of the EonaCat project(s) which is released under the Apache License.
// See the LICENSE file or go to https://EonaCat.com/License for full license details.
public sealed class DateBooster : BoosterBase
{
public DateBooster() : base("Date") { }
[System.Runtime.CompilerServices.MethodImpl(MethodImplOptions.AggressiveInlining)]
public override bool Boost(ref LogEventBuilder builder)
{
builder.WithProperty("Date", DateTime.UtcNow.ToString("yyyy-MM-dd"));
return true;
}
}
}