diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2019-01-13 13:50:10 -0500 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2019-05-17 16:59:38 -0400 |
commit | 86204d301ae0dc2e5990f78081646e6d1189fcce (patch) | |
tree | 49967fa34a4222070b50d29468068b186e8bce9d /org/output_hub.org | |
parent | doc generator info related (diff) |
cleaningdoc-reform_v0.4.1
Diffstat (limited to 'org/output_hub.org')
-rw-r--r-- | org/output_hub.org | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/org/output_hub.org b/org/output_hub.org index 51736ae..9ffa011 100644 --- a/org/output_hub.org +++ b/org/output_hub.org @@ -37,6 +37,9 @@ template outputHub() { auto msg = Msg!()(doc_matters); <<output_scheduled_task>> } + if (!(doc_matters.opt.action.quiet)) { + writeln(" ", doc_matters.src.filename_base); + } if (!(doc_matters.opt.action.parallelise_subprocesses)) { foreach(schedule; doc_matters.opt.action.output_task_scheduler) { Scheduled!()(schedule, doc_abstraction, doc_matters); @@ -77,10 +80,10 @@ import doc_reform.output, #+name: output_scheduled_task #+BEGIN_SRC d if (sched == outTask.pod) { - msg.v("sisu source processing... "); + msg.v("doc reform source processing... "); import doc_reform.output.source_pod; DocReformPod!()(doc_matters); - msg.vv("sisu source done"); + msg.vv("doc reform source done"); } #+END_SRC |