diff options
| author | Bond_009 <bond.009@outlook.com> | 2018-12-13 14:18:25 +0100 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2018-12-30 22:44:38 +0100 |
| commit | 0f8b3c634708ce8e7b2e2ae6fed87b6b943b5bca (patch) | |
| tree | 3b2440977592f46598ee1961199ec2c0fd3455ac /MediaBrowser.Model/Logging/ILogManager.cs | |
| parent | b0fd432126606d7008544ff0237beabc52109e02 (diff) | |
Use Microsoft.Extensions.Logging abstraction
Diffstat (limited to 'MediaBrowser.Model/Logging/ILogManager.cs')
| -rw-r--r-- | MediaBrowser.Model/Logging/ILogManager.cs | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/MediaBrowser.Model/Logging/ILogManager.cs b/MediaBrowser.Model/Logging/ILogManager.cs deleted file mode 100644 index e6a10cf18..000000000 --- a/MediaBrowser.Model/Logging/ILogManager.cs +++ /dev/null @@ -1,56 +0,0 @@ -using System; -using System.Threading; -using System.Threading.Tasks; - -namespace MediaBrowser.Model.Logging -{ - /// <summary> - /// Interface ILogManager - /// </summary> - public interface ILogManager - { - /// <summary> - /// Gets or sets the log level. - /// </summary> - /// <value>The log level.</value> - LogSeverity LogSeverity { get; set; } - - /// <summary> - /// Gets or sets the exception message prefix. - /// </summary> - /// <value>The exception message prefix.</value> - string ExceptionMessagePrefix { get; set; } - - /// <summary> - /// Gets the logger. - /// </summary> - /// <param name="name">The name.</param> - /// <returns>ILogger.</returns> - ILogger GetLogger(string name); - - /// <summary> - /// Reloads the logger. - /// </summary> - Task ReloadLogger(LogSeverity severity, CancellationToken cancellationToken); - - /// <summary> - /// Occurs when [logger loaded]. - /// </summary> - event EventHandler LoggerLoaded; - - /// <summary> - /// Flushes this instance. - /// </summary> - void Flush(); - - /// <summary> - /// Adds the console output. - /// </summary> - void AddConsoleOutput(); - - /// <summary> - /// Removes the console output. - /// </summary> - void RemoveConsoleOutput(); - } -} |
