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) {