summaryrefslogtreecommitdiff
path: root/libs/pbd/stacktrace.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-04-30 11:12:27 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-04-30 11:12:52 -0400
commitc40accda42bd470b7083fba6fcbba0fe68e96bb6 (patch)
tree512aeefdc285f9988202e7213f02a37d1a6f23a8 /libs/pbd/stacktrace.cc
parent03310a587c1157d2287c43f9f2aea97263606880 (diff)
don't print stacktraces to the supplied ostream AND cerr - a remnant from debugging wierd problems with stacktrace() on paul's system
Diffstat (limited to 'libs/pbd/stacktrace.cc')
-rw-r--r--libs/pbd/stacktrace.cc1
1 files changed, 0 insertions, 1 deletions
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);