You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Right now we are spending a lot of time to find out the problem source in case if it's related to segfault or segabort. We need to improve error handling to have more info that could help us to investigate bugs.
Describe the solution you'd like
Add more logs for trace and debug levels, intercept SIGSEGV/SIGABRT signals and print stack trace.
The text was updated successfully, but these errors were encountered:
We print stack trace using boost::stacktrace::stacktrace() which is not the safest way to do it in a
signal handler however it gives us more info if compared to safe call. xibosignage#184
Is your feature request related to a problem? Please describe.
Right now we are spending a lot of time to find out the problem source in case if it's related to segfault or segabort. We need to improve error handling to have more info that could help us to investigate bugs.
Describe the solution you'd like
Add more logs for trace and debug levels, intercept SIGSEGV/SIGABRT signals and print stack trace.
The text was updated successfully, but these errors were encountered: