Commit 03371bb1 authored by tebjan's avatar tebjan
Browse files

using System.Diagnostics.Debug.WriteLine instead of Console.WriteLine. fixes #115

parent 74506242
......@@ -58,7 +58,7 @@ namespace Svg
private void LogIDChange(SvgElement elem, string oldId, string newID)
{
Console.WriteLine("ID of SVG element " + elem.ToString() + " changed from " + oldId + " to " + newID);
System.Diagnostics.Debug.WriteLine("ID of SVG element " + elem.ToString() + " changed from " + oldId + " to " + newID);
}
public void InsertAndForceUniqueID(int index, SvgElement item, bool autoForceUniqueID = true, bool autoFixChildrenID = true, Action<SvgElement, string, string> logElementOldIDNewID = null)
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment