Skip to content

Commit bce653e

Browse files
stop using backtrace because we never used it and the informations it gives is poor
1 parent 41db18f commit bce653e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

apps/wakunode2/wakunode2.nim

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import
55
chronicles,
66
chronos,
77
metrics,
8-
libbacktrace,
98
system/ansi_c,
109
libp2p/crypto/crypto
1110
import
@@ -88,7 +87,7 @@ when isMainModule:
8887
when defined(posix):
8988
proc handleSigsegv(signal: cint) {.noconv.} =
9089
# Require --debugger:native
91-
fatal "Shutting down after receiving SIGSEGV", stacktrace = getBacktrace()
90+
fatal "Shutting down after receiving SIGSEGV"
9291

9392
# Not available in -d:release mode
9493
writeStackTrace()

0 commit comments

Comments
 (0)