Skip to content

Commit

Permalink
Use 'messages' consistently to describe entries written to SelfLog
Browse files Browse the repository at this point in the history
  • Loading branch information
nblumhardt committed May 30, 2016
1 parent 58b9064 commit 28e87c8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Serilog/Debugging/SelfLog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public static class SelfLog
static Action<string> _output;

/// <summary>
/// The output mechanism for self-log events.
/// The output mechanism for self-log messages.
/// </summary>
/// <example>
/// SelfLog.Out = Console.Error;
Expand All @@ -45,10 +45,10 @@ public static TextWriter Out
}

/// <summary>
/// Set the output mechanism for self-log events.
/// Set the output mechanism for self-log messages.
/// </summary>
/// <param name="output">A synchronized <see cref="TextWriter"/> to which
/// self-log events will be written.</param>
/// self-log messages will be written.</param>
// ReSharper disable once MemberCanBePrivate.Global
public static void Enable(TextWriter output)
{
Expand All @@ -62,7 +62,7 @@ public static void Enable(TextWriter output)
}

/// <summary>
/// Set the output mechanism for self-log events.
/// Set the output mechanism for self-log messages.
/// </summary>
/// <param name="output">An action to invoke with self-log messages.</param>
/// // ReSharper disable once MemberCanBePrivate.Global
Expand Down

0 comments on commit 28e87c8

Please sign in to comment.