1
0
Fork 0

added expection message in verbose case

This commit is contained in:
Frank Celler 2015-02-17 12:51:45 +01:00
parent c1fea5b048
commit b075f77152
1 changed files with 1 additions and 1 deletions

View File

@ -1991,8 +1991,8 @@ function resultException (req, res, err, headers, verbose) {
showTrace = true;
}
else if (verbose || verbose === undefined) {
msg = "An error has occurred during execution";
info.exception = String(err);
msg = "An error has occurred during execution: " + info.exception;
showTrace = true;
}
else {