Skip to content

Commit

Permalink
Remove obsolete FileRenderer
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidZidar committed Nov 11, 2022
1 parent bea8225 commit c21c3ba
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 58 deletions.
48 changes: 0 additions & 48 deletions src/TinyLogger/Files/FileRenderer.cs

This file was deleted.

10 changes: 0 additions & 10 deletions src/TinyLogger/TinyLoggerOptionsExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,16 +91,6 @@ public static TinyLoggerOptions AddFile(this TinyLoggerOptions options, string f
return options;
}

/// <summary>
/// Render messages in plain text to a file with a rolling filename.
/// </summary>
/// <param name="getFileName">Retrieve a filename to write to, if the value changes a new file with that file name will be created.</param>
[Obsolete("Use AddRollingFile")]
public static TinyLoggerOptions AddFile(this TinyLoggerOptions options, Func<string> getFileName)
{
return options.AddRollingFile(getFileName);
}

/// <summary>
/// Render messages in plain text to a file with a rolling filename.
/// </summary>
Expand Down

0 comments on commit c21c3ba

Please sign in to comment.