From c40accda42bd470b7083fba6fcbba0fe68e96bb6 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 30 Apr 2013 11:12:27 -0400 Subject: [PATCH] don't print stacktraces to the supplied ostream AND cerr - a remnant from debugging wierd problems with stacktrace() on paul's system --- libs/pbd/stacktrace.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/libs/pbd/stacktrace.cc b/libs/pbd/stacktrace.cc index ca614509a5..805b9a2e84 100644 --- a/libs/pbd/stacktrace.cc +++ b/libs/pbd/stacktrace.cc @@ -85,7 +85,6 @@ PBD::stacktrace (std::ostream& out, int levels) for (i = 0; i < size && (levels == 0 || i < size_t(levels)); i++) { out << " " << demangle (strings[i]) << std::endl; - std::cerr << " " << demangle (strings[i]) << std::endl; } free (strings);