]> git.itanic.dy.fi Git - rrdd/blobdiff - debug.c
process: Remove fork based concurrenct management
[rrdd] / debug.c
diff --git a/debug.c b/debug.c
index fe0fc9b139ba661d1c42df4adf7966f47020c985..437ce5eb87f02963da2639e1e44b58023b741f16 100644 (file)
--- a/debug.c
+++ b/debug.c
@@ -60,9 +60,9 @@ void print_trace(const char *file, int line, int color, int l,
        pthread_getname_np(pthread_self(), thread_name, sizeof(thread_name));
 
        ret = snprintf(all_trace, sizeof(all_trace),
-               "%s%s [%5d.%d] %s %s:%d %s %s",
+               "%s%s [%5d] %s %s:%d %s %s",
                color_str, time,
-               getpid(), get_parent_count(),
+               getpid(),
                thread_name,
                file, line, normal_color, trace);