From 91d9af5ed336732fcc8e6901f2b8cf9ec4a1f411 Mon Sep 17 00:00:00 2001 From: "yangguo@chromium.org" Date: Thu, 7 Mar 2013 16:19:51 +0000 Subject: [PATCH] log: add %p option to --logfile, expands to pid Review URL: https://chromiumcodereview.appspot.com/12093008 Patch from Ben Noordhuis . git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@13868 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/log-utils.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/log-utils.cc b/src/log-utils.cc index 830c3da..45ac403 100644 --- a/src/log-utils.cc +++ b/src/log-utils.cc @@ -107,6 +107,9 @@ void Log::Initialize() { // one character so we can escape the loop properly. p--; break; + case 'p': + stream.Add("%d", OS::GetCurrentProcessId()); + break; case 't': { // %t expands to the current time in milliseconds. double time = OS::TimeCurrentMillis(); -- 2.7.4