Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
garfield69 committed Sep 24, 2020
1 parent 9772793 commit 39f7add
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Jackett.Common/Services/LogCacheService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public void AddLog(LogEventInfo l)
logs.Insert(0, new CachedLog()
{
Level = l.Level.Name,
Message = $"{l.Message} {l.Exception}".Trim(),
Message = l.FormattedMessage,
When = l.TimeStamp
});
logs = logs.Take(200).ToList();
Expand Down

1 comment on commit 39f7add

@garfield69
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

resolves #9590

Please sign in to comment.