diff options
Diffstat (limited to 'lib/scripts')
-rw-r--r-- | lib/scripts/helpers.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/scripts/helpers.js b/lib/scripts/helpers.js index 0b32e8781..99137c504 100644 --- a/lib/scripts/helpers.js +++ b/lib/scripts/helpers.js @@ -62,5 +62,8 @@ function logError(e, file) { 'If this is in a plugin try updating or disabling the plugin, ' + 'if this is in a template try updating the template or switching to the "dokuwiki" template.', e.name, e.message, file); + if(e.stack) { + console.error(e.stack); + } } } |