summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/Log/XamarinLogListener.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen/Log/XamarinLogListener.cs')
-rw-r--r--Xamarin.Forms.Platform.Tizen/Log/XamarinLogListener.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Log/XamarinLogListener.cs b/Xamarin.Forms.Platform.Tizen/Log/XamarinLogListener.cs
new file mode 100644
index 00000000..02bdb0f1
--- /dev/null
+++ b/Xamarin.Forms.Platform.Tizen/Log/XamarinLogListener.cs
@@ -0,0 +1,20 @@
+using System;
+
+namespace Xamarin.Forms.Platform.Tizen
+{
+ internal class XamarinLogListener : LogListener
+ {
+ public XamarinLogListener()
+ {
+ }
+
+ #region implemented abstract members of LogListener
+
+ public override void Warning(string category, string message)
+ {
+ Log.Warn("[{0}] {1}", category, message);
+ }
+
+ #endregion
+ }
+}