MAIN QUESTION
The main question is still unanswered: Is there a way to change the limit that is printed to the console in android studio?
OLD CONTENT
I'm using code generation libraries. So a single error can suddenly lead to hundreds of errors resulting in this single error.
Currently I've the problem that I can't find the error, as I get 200 errors of error: cannot find symbol class ...
...
How can I change the limit of 200 to a bigger number?
EDIT
No code, as it is a android studio question
EDIT2
I know, it can happen if I open a xml file and insert some invalid code (by accident). It just happens by accident... The problem is, that android studio stops writing the errors to the error output console before the actual error source is visible...
SOLUTION FOR MY PROBLEM
In my special case I added a field to class and declared it as private. This lead to the problem, that the code generator for parcelable failed. It prints an error, but it can't be seen due to the 200 errors limit...