Skip to content
Snippets Groups Projects
Commit c2d30ec7 authored by Janis Daniel Dähne's avatar Janis Daniel Dähne
Browse files

- server now logs invalid json strings (that should be deserialized)

parent 747dbcd8
Branches
No related tags found
No related merge requests found
......@@ -13,7 +13,7 @@ namespace ClientServer.Helpers
/// </summary>
public static class Constants
{
public static string VersionString = "2.2.8";
public static string VersionString = "2.2.9";
/// <summary>
/// the port to use
......
......@@ -45,6 +45,7 @@ namespace ClientServer.Helpers
catch (Exception ex)
{
Console.WriteLine("error deserializing obj: " + ex.Message);
Console.WriteLine("json: " + json);
return null;
}
......@@ -69,6 +70,7 @@ namespace ClientServer.Helpers
catch (Exception ex)
{
Console.WriteLine("error deserializing obj: " + ex.Message);
Console.WriteLine("json: " + json);
return null;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment