Don't print the whole input file in case of Checker failure

Printing whole input is not particulary useful. It is usually big, so printing it slows down testing, and can be accessed via other means.

Test: run checker with test that is expected to fail

Change-Id: I3ee55d1585696044d7a0829b6a565d7892d964d9
diff --git a/tools/checker/match/file.py b/tools/checker/match/file.py
index 5c6aed7..4a0923c 100644
--- a/tools/checker/match/file.py
+++ b/tools/checker/match/file.py
@@ -352,6 +352,4 @@
       else:
         msg = "Statement could not be matched starting from line {}"
       msg = msg.format(lineNo)
-      with file(c1File.fileName) as cfgFile:
-        Logger.log(''.join(cfgFile), Logger.Level.Error)
       Logger.testFailed(msg, e.statement, e.variables)