Skip to content

Commit e40abe3

Browse files
committed
fix: Unify command log messages
- Replaces the separate "Command" and "Full command" log messages with a single "Executing command" message for clarity and conciseness.
1 parent 549818e commit e40abe3

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

infra/build/functions/gcb.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,9 @@ def exec_command_from_github(args):
8787
# Set the branch so that the trial_build builds the projects from the PR
8888
# branch.
8989
command.extend(['--branch', branch])
90-
logging.info('Command: %s.', command)
91-
9290
command.extend(args)
9391

94-
logging.info('Full command: %s.', command)
92+
logging.info('Executing command: %s.', command)
9593

9694
if command_file == OSS_FUZZ_ON_DEMAND_COMMAND_STR.split(' ')[1]:
9795
return oss_fuzz_on_demand.oss_fuzz_on_demand_main(command) == 0

0 commit comments

Comments
 (0)