singlepass verbosity

This commit is contained in:
tonton th 2021-02-24 17:48:16 +01:00
parent 6886fb4167
commit 0a1260eb6f
1 changed files with 7 additions and 0 deletions

View File

@ -166,6 +166,13 @@ if (foo) {
exit(1); exit(1);
} }
if (verbosity) {
fprintf(stderr, "input glob %s\n", globbing);
fprintf(stderr, "filter chain %s\n", filterchain);
fprintf(stderr, "ourput dir %s\n", outdir);
fprintf(stderr, "do xper %d\n", do_xper);
}
foo = run_the_singlepass(globbing, outdir, FILTERS); foo = run_the_singlepass(globbing, outdir, FILTERS);
fprintf(stderr, "\n\tRun the single pass --> %d\n", foo); fprintf(stderr, "\n\tRun the single pass --> %d\n", foo);