check-flagged-apis: remove debug print

Bug: 334870672
Test: atest --host check-flagged-apis-test
Change-Id: Ida3ba78bc240b5aed2382bf5a0ea12e8d1e1d763
diff --git a/tools/check-flagged-apis/src/com/android/checkflaggedapis/Main.kt b/tools/check-flagged-apis/src/com/android/checkflaggedapis/Main.kt
index c3a323b..0c078a0 100644
--- a/tools/check-flagged-apis/src/com/android/checkflaggedapis/Main.kt
+++ b/tools/check-flagged-apis/src/com/android/checkflaggedapis/Main.kt
@@ -269,7 +269,7 @@
         }
     val methodSignatureParts = methodSignature.split(Regex("\\(|\\)"))
     if (methodSignatureParts.size != 3) {
-      throw Exception("Bad XML: method signature '$methodSignature': debug $methodSignatureParts")
+      throw Exception("Bad XML: method signature '$methodSignature'")
     }
     var (methodName, methodArgs, methodReturnValue) = methodSignatureParts
     val packageAndClassName =