Commit adf42dd0 authored by erikcorry's avatar erikcorry Committed by Commit bot

Remove spurious prints from GC logging

R=hpayer@chromium.org, szager@chromium.org
TBR=hpayer@chromium.org
BUG=

Review URL: https://codereview.chromium.org/1149413003

Cr-Commit-Position: refs/heads/master@{#28707}
parent 748013b6
......@@ -358,7 +358,7 @@ void GCTracer::Print() const {
static_cast<double>(current_.end_memory_size) / MB);
int external_time = static_cast<int>(current_.scopes[Scope::EXTERNAL]);
if (external_time > 0) PrintF("%d / ", external_time);
if (external_time > 0) Output("%d / ", external_time);
double duration = current_.end_time - current_.start_time;
Output("%.1f ms", duration);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment