Skip to content

Commit

Permalink
EXAMPLE: Remove unused property
Browse files Browse the repository at this point in the history
  • Loading branch information
kmcclellan committed Jan 28, 2023
1 parent ad0f46e commit 63ca187
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Logging.Formatting.Example/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
logger.LogInformation(FarmLog.Milking, "{MilkBuckets} buckets of milk", 3);
}

logger.LogInformation(FarmLog.Feeding, "Fat and happy", animal);
logger.LogInformation(FarmLog.Feeding, "Fat and happy");
}
}

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ foreach (var animal in new[] { "cows", "pigs", "chickens" })
logger.LogInformation(FarmLog.Milking, "{MilkBuckets} buckets of milk", 3);
}

logger.LogInformation(FarmLog.Feeding, "Fat and happy", animal);
logger.LogInformation(FarmLog.Feeding, "Fat and happy");
}
}

Expand Down

0 comments on commit 63ca187

Please sign in to comment.