aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/tools/execlog/README.md
blob: a65c9ee1c8bd65febf23943b53a941a5ffd4e8d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 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.