diff options
-rw-r--r-- | deps/v8/src/log-utils.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/deps/v8/src/log-utils.cc b/deps/v8/src/log-utils.cc index d8d92cbe2..a66db3d93 100644 --- a/deps/v8/src/log-utils.cc +++ b/deps/v8/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(); |