Skip to content

Commit ad612c7

Browse files
committed
change a log level to warning
1 parent 1e1ef95 commit ad612c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

QuickFIXn/Session.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,7 @@ internal void Next(MessageBuilder msgBuilder)
669669
}
670670
catch (FieldNotFoundException e)
671671
{
672-
Log.Log(LogLevel.Information, e, "Rejecting invalid message, field not found: {Message}", e.Message);
672+
Log.Log(LogLevel.Warning, e, "Rejecting invalid message, field not found: {Message}", e.Message);
673673
if (string.CompareOrdinal(SessionID.BeginString, FixValues.BeginString.FIX42) >= 0 && message!.IsApp())
674674
{
675675
GenerateBusinessMessageReject(message, Fields.BusinessRejectReason.CONDITIONALLY_REQUIRED_FIELD_MISSING, e.Field);

0 commit comments

Comments
 (0)