Skip to content

Commit

Permalink
SNOW-990111: Refactor easy logging improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-ext-simba-lf committed Jan 17, 2024
1 parent 8d31672 commit e185fbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Snowflake.Data/Configuration/EasyLoggingConfigParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ private void CheckForUnknownFields(string fileContent)
.Cast<JProperty>()
.Where(property => knownProperties.Contains(property.Name))
.ToList()
.ForEach(unknownKey => s_logger.Warn($"Unknown field from config: {unknownKey}"));
.ForEach(unknownKey => s_logger.Warn($"Unknown field from config: {unknownKey.Name}"));
}
}
}

0 comments on commit e185fbd

Please sign in to comment.