aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/output_hub.org
diff options
context:
space:
mode:
authorRalph Amissah <ralph.amissah@gmail.com>2019-01-13 13:50:10 -0500
committerRalph Amissah <ralph.amissah@gmail.com>2019-05-17 16:59:38 -0400
commit86204d301ae0dc2e5990f78081646e6d1189fcce (patch)
tree49967fa34a4222070b50d29468068b186e8bce9d /org/output_hub.org
parentdoc generator info related (diff)
Diffstat (limited to 'org/output_hub.org')
-rw-r--r--org/output_hub.org7
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