Skip to content

Commit a907f22

Browse files
committed
Remove some extraneous logs from app cast gen
1 parent 3b5c4ed commit a907f22

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/NetSparkle.Tools.AppCastGenerator/AppCastMaker.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ private static string RemoveTextBlockFromRight(string input)
117117
// Start splitting and go from right to left.
118118
// Keep record of last applicable version and check one more segment before it.
119119
// If a check fails, then whatever we found previously is what we want.
120-
Console.WriteLine("Splitting {0} on periods", part);
120+
// Console.WriteLine("Splitting {0} on periods", part);
121121
var segments = part.Split('.');
122122
string tempSegment = "";
123123
bool lastVersionToCheck = false;
@@ -162,7 +162,7 @@ private static string RemoveTextBlockFromRight(string input)
162162
break;
163163
}
164164
}
165-
Console.WriteLine("Returning {0}", lastValidVersionLeft);
165+
//Console.WriteLine("Returning {0}", lastValidVersionLeft);
166166
return lastValidVersionLeft;
167167
}
168168

0 commit comments

Comments
 (0)