summaryrefslogtreecommitdiffstats
path: root/tmate-debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'tmate-debug.c')
-rw-r--r--tmate-debug.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tmate-debug.c b/tmate-debug.c
index 15dd31a6..9e160c43 100644
--- a/tmate-debug.c
+++ b/tmate-debug.c
@@ -62,13 +62,13 @@ void tmate_print_trace(void)
size = backtrace (array, 20);
strings = backtrace_symbols (array, size);
- tmate_debug ("============ %zd stack frames ============", size);
+ tmate_info ("============ %zd stack frames ============", size);
for (i = 1; i < size; i++) {
#if DEBUG
if (print_resolved_stack_frame(strings[i]) < 0)
#endif
- tmate_debug("%s", strings[i]);
+ tmate_info("%s", strings[i]);
}
free (strings);