Skip to content

Commit

Permalink
write exception stacktrace to log
Browse files Browse the repository at this point in the history
  • Loading branch information
Stricted committed Dec 6, 2016
1 parent 7191f3a commit 4a6fd48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SPHDecode/Implementations/util.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public static bool IsValidXML(byte[] data)
}
catch (XmlException ex)
{
LogManager.WriteToLog(ex.Message);
LogManager.WriteToLog(ex.ToString());
return false;
}
}
Expand Down

0 comments on commit 4a6fd48

Please sign in to comment.