We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2942655 commit 33b8848Copy full SHA for 33b8848
test/index.js
@@ -270,7 +270,7 @@ function runBench(options) {
270
};
271
})());
272
} catch (e) {
273
- console.log('Could not bench showdown.');
+ console.log('Could not bench showdown. (Error: %s)', e.message);
274
}
275
276
// markdown-it
@@ -283,7 +283,7 @@ function runBench(options) {
283
284
285
286
- console.log('Could not bench markdown-it.');
+ console.log('Could not bench markdown-it. (Error: %s)', e.message);
287
288
289
// markdown.js
@@ -295,7 +295,7 @@ function runBench(options) {
295
296
297
298
- console.log('Could not bench markdown.js.');
+ console.log('Could not bench markdown.js. (Error: %s)', e.message);
299
300
301
return true;
0 commit comments