diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-08 23:44:51 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-08 23:44:51 -0500 |
| commit | 247a40fa614241b52babb29bc03b0afd9a9031f9 (patch) | |
| tree | 5e82b401988d9246d8da2e59a9e29d0c2627c743 /MediaBrowser.Model/Logging/ILogManager.cs | |
| parent | dcc5f9ebab9fe0260d6886d79284ccdce83a4814 (diff) | |
add console logging during startup
Diffstat (limited to 'MediaBrowser.Model/Logging/ILogManager.cs')
| -rw-r--r-- | MediaBrowser.Model/Logging/ILogManager.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Logging/ILogManager.cs b/MediaBrowser.Model/Logging/ILogManager.cs index fabca4459..674d8fd16 100644 --- a/MediaBrowser.Model/Logging/ILogManager.cs +++ b/MediaBrowser.Model/Logging/ILogManager.cs @@ -40,5 +40,15 @@ namespace MediaBrowser.Model.Logging /// Flushes this instance. /// </summary> void Flush(); + + /// <summary> + /// Adds the console output. + /// </summary> + void AddConsoleOutput(); + + /// <summary> + /// Removes the console output. + /// </summary> + void RemoveConsoleOutput(); } } |
