Skip to content

Commit

Permalink
update nullable anotation
Browse files Browse the repository at this point in the history
  • Loading branch information
gasparnagy committed Aug 29, 2024
1 parent b1dd9c9 commit 3ca150b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Reqnroll.VisualStudio/Diagnostics/LogMessage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ public record LogMessage(
TraceLevel Level,
string Message,
string CallerMethod,
[CanBeNull] Exception Exception = default!)
Exception? Exception = default!)
{
public DateTimeOffset TimeStamp { get; } = DateTimeOffset.Now;
public int ManagedThreadId { get; } = Thread.CurrentThread.ManagedThreadId;
Expand Down

0 comments on commit 3ca150b

Please sign in to comment.