summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/Deserializer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen/Deserializer.cs')
-rw-r--r--Xamarin.Forms.Platform.Tizen/Deserializer.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Deserializer.cs b/Xamarin.Forms.Platform.Tizen/Deserializer.cs
index 8335840c..3366e065 100644
--- a/Xamarin.Forms.Platform.Tizen/Deserializer.cs
+++ b/Xamarin.Forms.Platform.Tizen/Deserializer.cs
@@ -5,6 +5,7 @@ using System.Runtime.Serialization;
using System.Xml;
using System.Diagnostics;
using System.IO;
+using Xamarin.Forms.Internals;
namespace Xamarin.Forms.Platform.Tizen
{
@@ -37,7 +38,7 @@ namespace Xamarin.Forms.Platform.Tizen
catch (Exception e)
{
Debug.WriteLine("Could not deserialize properties: " + e.Message);
- Xamarin.Forms.Log.Warning("Xamarin.Forms PropertyStore", $"Exception while reading Application properties: {e}");
+ Internals.Log.Warning("Xamarin.Forms PropertyStore", $"Exception while reading Application properties: {e}");
}
finally
{
@@ -76,7 +77,7 @@ namespace Xamarin.Forms.Platform.Tizen
catch (Exception e)
{
Debug.WriteLine("Could not serialize properties: " + e.Message);
- Xamarin.Forms.Log.Warning("Xamarin.Forms PropertyStore", $"Exception while writing Application properties: {e}");
+ Internals.Log.Warning("Xamarin.Forms PropertyStore", $"Exception while writing Application properties: {e}");
}
finally
{
@@ -98,7 +99,7 @@ namespace Xamarin.Forms.Platform.Tizen
catch (Exception e)
{
Debug.WriteLine("Could not move new serialized property file over old: " + e.Message);
- Xamarin.Forms.Log.Warning("Xamarin.Forms PropertyStore", $"Exception while writing Application properties: {e}");
+ Internals.Log.Warning("Xamarin.Forms PropertyStore", $"Exception while writing Application properties: {e}");
}
});
}