tree: 83d029e181e821ad3923d4dd418844cbdfe6a5d3 [path history] [tgz]
  1. src/
  2. BUILD
  3. README.md
src/tools/execlog/README.md

Execution Log Parser

This tool is used to inspect and parse the Bazel execution logs. To generate the execution log, run e.g.:

    bazel build \
        --experimental_execution_log_file=/tmp/exec.log :hello_world

Then build the parser and run it.

    bazel build src/tools/execlog:all
    bazel-bin/src/tools/execlog/parser --log_path=/tmp/exec.log

This will simply print the log contents to stdout in text form.