mirror of https://github.com/AxioDL/logvisor.git
Don't print addr2line's stderr
This commit is contained in:
parent
2e595922be
commit
71bbb3d082
|
@ -196,7 +196,7 @@ void logvisorAbort()
|
||||||
#if __APPLE__
|
#if __APPLE__
|
||||||
snprintf(cmdLine, 1024, "atos -p %d", getpid());
|
snprintf(cmdLine, 1024, "atos -p %d", getpid());
|
||||||
#else
|
#else
|
||||||
snprintf(cmdLine, 1024, "addr2line -C -f -e \"%s\"", exeNameBuffer);
|
snprintf(cmdLine, 1024, "2>/dev/null addr2line -C -f -e \"%s\"", exeNameBuffer);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
std::string cmdLineStr = cmdLine;
|
std::string cmdLineStr = cmdLine;
|
||||||
|
|
Loading…
Reference in New Issue