diff options
Diffstat (limited to 'org/output_hub.org')
-rw-r--r-- | org/output_hub.org | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/org/output_hub.org b/org/output_hub.org index 5375b2f..e3b4607 100644 --- a/org/output_hub.org +++ b/org/output_hub.org @@ -82,11 +82,23 @@ import doc_reform.output, #+name: output_scheduled_task #+BEGIN_SRC d -if (sched == outTask.pod) { - msg.v("doc reform source processing... "); +if (sched == outTask.source + || sched == outTask.pod +) { + if (sched == outTask.source) { + msg.v("doc reform source processing... "); + } + if (sched == outTask.pod) { + msg.v("doc reform source pod processing... "); + } import doc_reform.output.source_pod; DocReformPod!()(doc_matters); - msg.vv("doc reform source done"); + if (sched == outTask.source) { + msg.vv("doc reform source done"); + } + if (sched == outTask.pod) { + msg.vv("doc reform source pod done"); + } } #+END_SRC |