Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Kees committed Apr 5, 2022
1 parent b944c9e commit 7da3b72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions OfficeConverter/Helpers/Logger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ internal class Logger
/// An unique id that can be used to identify the logging of the converter when
/// calling the code from multiple threads and writing all the logging to the same file
/// </summary>
private string _instanceId;
private readonly string _instanceId;
#endregion

#region Constructor
Expand All @@ -59,7 +59,7 @@ internal Logger(ILogger logger, string instanceId)

#region WriteToLog
/// <summary>
/// Writes a line to the <see cref="_log" />
/// Writes a line to the <see cref="_logger" />
/// </summary>
/// <param name="message">The message to write</param>
internal void WriteToLog(string message)
Expand Down

0 comments on commit 7da3b72

Please sign in to comment.