Skip to content

Commit

Permalink
change: foe_tool add quiet mode
Browse files Browse the repository at this point in the history
  • Loading branch information
robert-burger committed Jul 31, 2024
1 parent a3321c3 commit 1903411
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tools/foe_tool/foe_tool.c
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,9 @@ int main(int argc, char **argv) {
} else if ((strcmp(argv[i], "-v") == 0) ||
(strcmp(argv[i], "--verbose") == 0)) {
max_print_level = 100;
} else if ((strcmp(argv[i], "-q") == 0) ||
(strcmp(argv[i], "--quiet") == 0)) {
max_print_level = 1;
} else if ((argv[i][0] != '-') && (first_fn == NULL)) {
first_fn = argv[i];
} else if ((argv[i][0] != '-') && (second_fn == NULL)) {
Expand Down

0 comments on commit 1903411

Please sign in to comment.