From 4308eba7b0d629907ff6c403dc7a6548a23a970f Mon Sep 17 00:00:00 2001 From: Karol Lewandowski Date: Thu, 13 Feb 2020 15:24:27 +0100 Subject: [PATCH] crash-manager: Be a bit more verbose about consequence of missing TID Change-Id: If5b5a4c5050c9fc5afea233311de6145222c445f --- src/crash-manager/crash-manager.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crash-manager/crash-manager.c b/src/crash-manager/crash-manager.c index 753d1de..33f1820 100644 --- a/src/crash-manager/crash-manager.c +++ b/src/crash-manager/crash-manager.c @@ -334,7 +334,7 @@ bool set_crash_info(struct crash_info *cinfo) } else { cinfo->tid_info = find_crash_tid(cinfo->pid_info); if (cinfo->tid_info < 0) { - _I("TID not found"); + _W("TID not found. Assuming TID = PID (%d).", cinfo->pid_info); cinfo->tid_info = cinfo->pid_info; } } -- 2.7.4