I was wondering if it was possible to modify the output from maven to for example hide the lines that start with [INFO] or to be able to see lines that start with [DEBUG]?>
You can activate debug output using -X or --debug. For example:
-X
--debug
mvn -X install
You can hide INFO messages using -q or --quiet. For example:
INFO
-q
--quiet
mvn -q install