From d5fcc849f057f4998143c3f7bb331901502b130d Mon Sep 17 00:00:00 2001 From: Matthias Gatto Date: Mon, 9 Mar 2020 17:11:35 +0100 Subject: [PATCH] api/server: remove a debug printf Signed-off-by: Matthias Gatto --- api/server/app.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/api/server/app.cc b/api/server/app.cc index 8106f1aac..de585a0d2 100644 --- a/api/server/app.cc +++ b/api/server/app.cc @@ -397,7 +397,6 @@ void SegvHandler(int sig) { size = backtrace(array, 32); // print out all the frames to stderr - printf("server got segv"); fprintf(stderr, "Server Error: segmentation fault"); backtrace_symbols_fd(array, size, STDERR_FILENO); exit(139);