diff options
author | Ralph Amissah <ralph@amissah.com> | 2018-08-14 10:22:11 -0400 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2019-04-10 15:14:15 -0400 |
commit | be384681a55a09f0deb284eb18da63c082240c68 (patch) | |
tree | 2a2cd3df2a6051f4925b7d2bf2fbb13d12ad4df6 /org/sdp.org | |
parent | 0.27.0 parallelize doc processing (diff) |
catches
Diffstat (limited to 'org/sdp.org')
-rw-r--r-- | org/sdp.org | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/org/sdp.org b/org/sdp.org index ea8a4bf..5a0160d 100644 --- a/org/sdp.org +++ b/org/sdp.org @@ -82,7 +82,7 @@ void main(string[] args) { <<sdp_mixin>> <<sdp_args>> <<sdp_do_selected>> - if (_manifests.length > 1) { // _manifests[0] initialized dummy element + if (_manifests.length > 1) { // _manifests[0] initialized dummy element foreach(manifest; parallel(_manifests[1..$])) { if (!empty(manifest.src.filename)) { <<sdp_each_file_do_scope>> @@ -626,9 +626,10 @@ scope(success) { scope(failure) { debug(checkdoc) { stderr.writefln( - "~ document run failure ~ (%s v%s)\n\t%s", + "~ document run failure ~ (%s v%s)\n\t%s\n%s", __VENDOR__, __VERSION__, - manifest.src.filename + manifest.src.filename, + "------------------------------------------------------------------", ); } } |