vincent-hugot / qtest

Inline (Unit) Tests for OCaml
GNU General Public License v3.0
67 stars 8 forks source link

Stop printing log messages on stderr #57

Closed tperami closed 4 years ago

tperami commented 4 years ago

I'm using qtest as part of dune and it is very annoying for me that qtest prints some log output on stderr when everything is going normally. For example

Extraction : `src/modulename.ml' Done.

Either this output should be entirely suppressed or a --quiet option could be added to suppress it.

c-cube commented 4 years ago

would you mind testing on master with --quiet?

tperami commented 4 years ago

It stopped printing Extraction : and Done. but it still prints the name of the processed files in between.

c-cube commented 4 years ago

my bad. should be fixed now.

tperami commented 4 years ago

Seems good to me! Thank you very much!