Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ImportedProjects
SVG
Commits
03371bb1
Commit
03371bb1
authored
Jan 10, 2015
by
tebjan
Browse files
using System.Diagnostics.Debug.WriteLine instead of Console.WriteLine. fixes #115
parent
74506242
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/SvgElementCollection.cs
View file @
03371bb1
...
...
@@ -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
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment