This patch changes log levels to error level for debugging.
Change-Id: I0cd74abbd2ba001457258f9d9730af4c3ab506e8
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
return;
}
- _W("[DBUS] %s", args->GetLogMessage().c_str());
+ _E("[DBUS] %s", args->GetLogMessage().c_str());
}
void WorkerThread() {
break;
pid_t child_pgid = getpgid(info.ssi_pid);
- _W("[SIGCHLD] pid(%d), pgid(%d), status(%d)",
+ _E("[SIGCHLD] pid(%d), pgid(%d), status(%d)",
info.ssi_pid, child_pgid, info.ssi_status);
while ((child_pid = waitpid(-1, &status, WNOHANG)) > 0) {
}
void SignalManager::OnHydraSigchld(pid_t pid, int status) {
- _D("pid: %d, status: %d", pid, status);
+ _E("pid: %d, status: %d", pid, status);
HandleSigchld(pid, status);
}