Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
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
6 changes: 3 additions & 3 deletions 6 src/NLog/Abstractions/ILogger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -296,14 +296,14 @@ bool IsFatalEnabled
/// <remarks>This method was marked as obsolete before NLog 4.3.11 and it may be removed in a future release.</remarks>
[Obsolete("Use Debug(Exception exception, string message, params object[] args) method instead. Marked obsolete with v4.3.11 (Only here because of LibLog)")]
[EditorBrowsable(EditorBrowsableState.Never)]
void DebugException([Localizable(false)][StructuredMessageTemplate] string message, Exception exception);
void DebugException([Localizable(false)] string message, Exception exception);

/// <summary>
/// Writes the diagnostic message and exception at the <c>Debug</c> level.
/// </summary>
/// <param name="message">A <see langword="string" /> to be written.</param>
/// <param name="exception">An exception to be logged.</param>
void Debug(Exception exception, [Localizable(false)][StructuredMessageTemplate] string message);
void Debug(Exception exception, [Localizable(false)] string message);

/// <summary>
/// Writes the diagnostic message and exception at the <c>Debug</c> level.
Expand Down Expand Up @@ -961,7 +961,7 @@ bool IsFatalEnabled
/// <remarks>This method was marked as obsolete before NLog 4.3.11 and it may be removed in a future release.</remarks>
[Obsolete("Use Fatal(Exception exception, string message, params object[] args) method instead. Marked obsolete with v4.3.11 (Only here because of LibLog)")]
[EditorBrowsable(EditorBrowsableState.Never)]
void FatalException([Localizable(false)][StructuredMessageTemplate] string message, Exception exception);
void FatalException([Localizable(false)] string message, Exception exception);

/// <summary>
/// Writes the diagnostic message and exception at the <c>Fatal</c> level.
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.