diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2022-02-23 15:11:39 -0500 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2022-02-25 19:41:09 -0500 |
commit | 20a36744ada25bf063199a24fe3eebe85f056235 (patch) | |
tree | 1f00bcdb4137ce2eb0030f4f44fb0c57053aed58 /org/default_shared.org | |
parent | rethink verbose & debug flags, introduce show (diff) |
verbosity level, "vox_gt[lv]" (voice greater than)
Diffstat (limited to 'org/default_shared.org')
-rw-r--r-- | org/default_shared.org | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/org/default_shared.org b/org/default_shared.org index 6c99d61..af850a0 100644 --- a/org/default_shared.org +++ b/org/default_shared.org @@ -39,12 +39,12 @@ template Msg() { @safe auto Msg(I)(I doc_matters) { struct Msg_ { void v()(string message) { - if (!(doc_matters.opt.action.quiet) && doc_matters.opt.action.verbose) { + if (doc_matters.opt.action.vox_gt1) { writeln(message); } } void vv()(string message) { - if (!(doc_matters.opt.action.quiet) && doc_matters.opt.action.very_verbose) { + if (doc_matters.opt.action.vox_gt2) { writeln(message); } } |