From 372b8e269679ca8d80dbff977519613d6988c300 Mon Sep 17 00:00:00 2001 From: Paul Wankadia Date: Mon, 12 Jul 2021 01:56:06 -0700 Subject: [PATCH] Fix constant name in log message PiperOrigin-RevId: 384187707 Change-Id: I3d322f6d00fa63fc7a2b33f8c7844c4291e4fef1 --- sandboxed_api/sandbox2/monitor.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sandboxed_api/sandbox2/monitor.cc b/sandboxed_api/sandbox2/monitor.cc index f894ce2..d7fcb8b 100644 --- a/sandboxed_api/sandbox2/monitor.cc +++ b/sandboxed_api/sandbox2/monitor.cc @@ -120,7 +120,7 @@ void StopProcess(pid_t pid, int signo) { LOG(WARNING) << "Process " << pid << " died while trying to PTRACE_LISTEN it"; } else { - PLOG(ERROR) << "ptrace(PTRACE_CONT, pid=" << pid << ", sig=" << signo + PLOG(ERROR) << "ptrace(PTRACE_LISTEN, pid=" << pid << ", sig=" << signo << ")"; } }