Minor log adjustments.

This commit is contained in:
Tom
2025-03-06 16:08:57 +00:00
parent c0a9d62e28
commit ac967dcb1d
2 changed files with 2 additions and 2 deletions

View File

@@ -38,7 +38,7 @@ namespace CommonSocketLibrary.Common
return;
string content = message.Data?.ToString() ?? string.Empty;
_logger.Verbose("RX #" + message.OpCode + ": " + content);
_logger.Debug("RX #" + message.OpCode + ": " + content);
var type = _messageTypeManager.GetMessageTypeByCode(message.OpCode);
if (type == null)