Karma version 4.2.0
macOS 10.14.4
How can I get more details on this exception ?
Thanks
Try 鈥攍ogLevel=DEBUG
If that fails
const reportError = (error) => {
process.emit('infrastructure_error', error)
disconnectBrowsers(1)
this.log.error(error); // Add this line in lib/server.js
}
this log should really be in production ;)
Hi @johnjbarton, I'm also getting an "UncaughtException" error with no additional information. logLevel debug did not provide more information. I had to add the log call in lib/server.js as you have described. Is there any way to have it log the error by default, without manually editing server.js?
Is there any way to have it log the error by default, without manually editing server.js?
Sure, send a Pull Request.
:tada: This issue has been resolved in version 5.0.0 :tada:
The release is available on:
Your semantic-release bot :package::rocket:
Most helpful comment
Try
鈥攍ogLevel=DEBUGIf that fails