Skip to content

Commit 1ade562

Browse files
committed
Removed Debugging Output
1 parent ae0a586 commit 1ade562

File tree

1 file changed

+0
-6
lines changed
  • src/Xamarin.Android.Build.Tasks/Tasks

1 file changed

+0
-6
lines changed

src/Xamarin.Android.Build.Tasks/Tasks/Aapt.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -360,12 +360,6 @@ protected void LogEventsFromTextOutput (string singleLine, MessageImportance mes
360360
var match = AndroidToolTask.AndroidErrorRegex.Match (singleLine.Trim ());
361361

362362
if (match.Success) {
363-
Console.WriteLine ($"\t path: '{match.Groups ["path"].Value}'");
364-
Console.WriteLine ($"\t file: '{match.Groups ["file"].Value}'");
365-
Console.WriteLine ($"\t line: '{match.Groups ["line"].Value}'");
366-
Console.WriteLine ($"\t level: '{match.Groups ["level"].Value}'");
367-
Console.WriteLine ($"\tmessage: '{match.Groups ["message"].Value}'");
368-
369363
var file = match.Groups["file"].Value;
370364
int line = 0;
371365
if (!string.IsNullOrEmpty (match.Groups["line"]?.Value))

0 commit comments

Comments
 (0)