aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Logging/IConsoleLogger.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Logging/IConsoleLogger.cs')
-rw-r--r--MediaBrowser.Model/Logging/IConsoleLogger.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Logging/IConsoleLogger.cs b/MediaBrowser.Model/Logging/IConsoleLogger.cs
new file mode 100644
index 000000000..a8c282d65
--- /dev/null
+++ b/MediaBrowser.Model/Logging/IConsoleLogger.cs
@@ -0,0 +1,7 @@
+namespace MediaBrowser.Model.Logging
+{
+ public interface IConsoleLogger
+ {
+ void WriteLine(string message);
+ }
+}