Skip to content

Commit

Permalink
Experimental UI: don't show dates for no-build commands
Browse files Browse the repository at this point in the history
    When building with timestamps enabled, it is useful to know the date
    as well, e.g., when later looking at logs. This, however, is not the
    case if the command does not build (e.g., "bazel help", "bazel query"),
    or, in general, if the first output is only produced after the command
    is completed.

    Change-Id: I75ef38fbb98e886b1dc38899efa10188055f87e2
    PiperOrigin-RevId: 157700578
  • Loading branch information
Luca Di Grazia committed Sep 4, 2022
1 parent 621d7ac commit bb22a82
Showing 1 changed file with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -147,16 +147,6 @@ public void write(int b) throws IOException {
stream.write(b);
}
}

@Override
public void flush() throws IOException {
stream.flush();
}

@Override
public void close() throws IOException {
stream.close();
}
}

public ExperimentalEventHandler(
Expand Down

0 comments on commit bb22a82

Please sign in to comment.