diff options
Diffstat (limited to 'src/doc_reform/output/hub.d')
-rw-r--r-- | src/doc_reform/output/hub.d | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/doc_reform/output/hub.d b/src/doc_reform/output/hub.d index 227cd3b..66dcd43 100644 --- a/src/doc_reform/output/hub.d +++ b/src/doc_reform/output/hub.d @@ -20,18 +20,18 @@ template outputHub() { auto msg = Msg!()(doc_matters); if (sched == outTask.source_or_pod) { if (doc_matters.opt.action.source) { - msg.v("doc reform source processing... "); + msg.v("spine (doc reform) source processing... "); } if (doc_matters.opt.action.pod) { - msg.v("doc reform source pod processing... "); + msg.v("spine (doc reform) source pod processing... "); } import doc_reform.output.source_pod; DocReformPod!()(doc_matters); if (doc_matters.opt.action.source) { - msg.vv("doc reform source done"); + msg.vv("spine (doc reform) source done"); } if (doc_matters.opt.action.pod) { - msg.vv("doc reform source pod done"); + msg.vv("spine (doc reform) source pod done"); } } if (sched == outTask.epub) { |