Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Shared.EventStore/Aggregate/AggregateService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ internal void SetCache<TAggregate>((Type, MemoryCacheEntryOptions, Object) aggre
//This approach should be safer.
if (aggregate == null)
{
Logger.Logger.LogWarning($"aggregate is null");
Logger.Logger.LogWarning("aggregate is null");
}

Logger.Logger.LogWarning($"About to save to cache.");
Logger.Logger.LogWarning("About to save to cache.");

String g = typeof(TAggregate).Name;
String key = $"{g}-{aggregate.AggregateId}";
Expand Down
Loading