From 453910a237d5b8fafd77eeaf792694bf30cdaecc Mon Sep 17 00:00:00 2001 From: Teo Voinea <58236992+tevoinea@users.noreply.github.com> Date: Mon, 31 Jul 2023 16:12:51 -0400 Subject: [PATCH] Update Events.cs --- src/ApiService/ApiService/onefuzzlib/Events.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ApiService/ApiService/onefuzzlib/Events.cs b/src/ApiService/ApiService/onefuzzlib/Events.cs index 0b806c5806..2fdfed4397 100644 --- a/src/ApiService/ApiService/onefuzzlib/Events.cs +++ b/src/ApiService/ApiService/onefuzzlib/Events.cs @@ -89,7 +89,7 @@ public async Async.Task SendEvent(BaseEvent anEvent) { public virtual void LogEvent(BaseEvent anEvent) { var serializedEvent = JsonSerializer.Serialize(anEvent, anEvent.GetType(), _options); - _log.LogInformation("sending event: {EventType} - {serializedEvent}", anEvent.GetEventType(), serializedEvent); + _log.LogInformation("logging event: {EventType} - {serializedEvent}", anEvent.GetEventType(), serializedEvent); } public async Async.Task> GetDownloadableEvent(Guid eventId) {