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 /src/doc_reform/io_in | |
parent | rethink verbose & debug flags, introduce show (diff) |
verbosity level, "vox_gt[lv]" (voice greater than)
Diffstat (limited to 'src/doc_reform/io_in')
-rw-r--r-- | src/doc_reform/io_in/paths_source.d | 2 | ||||
-rw-r--r-- | src/doc_reform/io_in/read_config_files.d | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/doc_reform/io_in/paths_source.d b/src/doc_reform/io_in/paths_source.d index a50f386..c34ac43 100644 --- a/src/doc_reform/io_in/paths_source.d +++ b/src/doc_reform/io_in/paths_source.d @@ -90,7 +90,7 @@ template PodManifest() { _manifest_path = m.captures["podpath"]; } } else { - if (_opt_action.verbose || _opt_action.very_verbose || _opt_action.debug_do) { + if (_opt_action.vox_gt1 || _opt_action.debug_do) { writeln("WARNING, src is not a pod, issue with manifest_path: ", _pth); // remove? unless can distinguish pod } _manifest_path = ""; diff --git a/src/doc_reform/io_in/read_config_files.d b/src/doc_reform/io_in/read_config_files.d index c112d1e..8813e16 100644 --- a/src/doc_reform/io_in/read_config_files.d +++ b/src/doc_reform/io_in/read_config_files.d @@ -139,7 +139,7 @@ webserv: try { if (exists(conf_file)) { if (conf_file.getLinkAttributes.attrIsFile) { - if (_opt_action.verbose || _opt_action.very_verbose || _opt_action.debug_do) { + if (_opt_action.vox_gt1 || _opt_action.debug_do) { writeln("config file used: \"", conf_file, "\" (cli flag settings override config file's individual settings)"); } config_file_str = conf_file.readText; |