Add a 'quiet' mode
Java class file shrinker, optimizer, obfuscator, and preverifier
Brought to you by:
guardsquare
Even when not using -verbose, ProGuard outputs a lot of
information to the console. This includes the banner
('Proguard, version ...') and information on reading
and writing files and directories. When using ProGuard
within makefiles, this is cluttering up the screen.
There should be a 'quiet' mode in which ProGuard does
not write anything to stdout/stderr unless a problem
occurs (problems should, of course, still be reported).
Logged In: YES
user_id=555208
I'll consider it. I'm always hoping the information will
lead to more informative reports and questions from users as
well...
Logged In: YES
user_id=473935
Thank you for considering it! I also believe that the
information which you print out is valuable. It should stay
as it is as the default. I would just like to see an
additional switch which must be explicitly activated to turn
on the 'quiet' mode.
I'm also interested in a quiet mode for easier detection of problems (warnings/notes) in the build process.
Optional further solutions:
Ah, I just noticed that the dead code analysis can be redirected to a separate file in the proguard conf, by writing "-printusage file" instead of just "-printusage".