Hi All,
I'm currently creating a DLL in windows, from some golang code.
I'm enabling WER with the debug.SetTraceback("wer") and it works correctly to produce a crashdump.
However, I want to suppress the trace output, because its just flooding the logs whenever it crashes.
Is there a way to use the debug.SetCrashOutput to stop the logging?
I've tried setting the below snippet, but its still printing out to the logs normally
debug.SetCrashOutput(nil, debug.CrashOptions{})```


its not having any affect unfortunately