From f35c2e499c1925165e452546122c8a40408dfba6 Mon Sep 17 00:00:00 2001 From: Ryan Peters Date: Mon, 16 Dec 2024 16:24:27 -0500 Subject: [PATCH] modify logging message --- NoteHub.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/NoteHub.cs b/NoteHub.cs index 80b5e8b..337ed78 100644 --- a/NoteHub.cs +++ b/NoteHub.cs @@ -29,8 +29,6 @@ namespace BinaryDad.Notes { try { - logger.LogInformation($"Saving note \"{noteName}\""); - noteService.SaveNote(content, noteName); // find all other connections except for the current one @@ -44,7 +42,7 @@ namespace BinaryDad.Notes .Clients(clientConnections) .SendAsync("updateNote", content); - logger.LogInformation($"NOTE \"{noteName}\" SAVED! Updated {clientConnections.Count} other client(s)."); + logger.LogInformation($"Note \"{noteName}\" saved! Updated {clientConnections.Count} other client(s)."); } catch (Exception ex) {