Skip to content

Commit

Permalink
Output mnemonic when reporting subcommand.
Browse files Browse the repository at this point in the history
Would like to also output the strategy or runner used, but that's not as easy.

PiperOrigin-RevId: 500689647
Change-Id: Iec5f3f3794aa9270ae59911183b4b84540414dcf
  • Loading branch information
larsrc-google authored and Copybara-Service committed Jan 9, 2023
1 parent 7c03ff5 commit afa2500
Showing 1 changed file with 2 additions and 0 deletions.
Expand Up @@ -327,6 +327,8 @@ public void maybeReportSubcommand(Spawn spawn) {
reason.append(", execution platform: ");
reason.append(owner.getExecutionPlatform().label());
}
reason.append(", mnemonic: ");
reason.append(owner.getMnemonic());
reason.append("]");
}

Expand Down

0 comments on commit afa2500

Please sign in to comment.