diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2025-09-24 23:55:49 -0400 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2025-09-25 11:58:17 -0400 |
commit | 710bb22a76d6dcd33395984726cf0cc08f894122 (patch) | |
tree | c2d3969cf48a2facf55b4be5c7f1b5dffd27e088 /org/default_shared_snippets.org | |
parent | spine.d tidy (diff) |
terminal output verbosity levels, minor rework
Diffstat (limited to 'org/default_shared_snippets.org')
-rw-r--r-- | org/default_shared_snippets.org | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/org/default_shared_snippets.org b/org/default_shared_snippets.org index 6407e4a..8682d97 100644 --- a/org/default_shared_snippets.org +++ b/org/default_shared_snippets.org @@ -102,12 +102,12 @@ template Msg() { auto Msg(I)(I doc_matters) { struct Msg_ { void v()(string message) { - if (doc_matters.opt.action.vox_gt1) { + if (doc_matters.opt.action.vox_gt_2) { writeln(message); } } void vv()(string message) { - if (doc_matters.opt.action.vox_gt2) { + if (doc_matters.opt.action.vox_gt_3) { writeln(message); } } |