signalapp / gradle-witness

A gradle plugin that enables static verification for remote dependencies.
MIT License
229 stars 60 forks source link

Log 'Verifying' messages at INFO level #26

Open cbeams opened 6 years ago

cbeams commented 6 years ago

Problem: WitnessPlugin used println to print "Verifying ..." messages forcing the output to show up at the console under all conditions.

Solution: Print the same messages using project.logger at INFO level, such that "Verifying ..." messages are not printed at all by default, but are printed if -i/--info is provided at the command line.