Skip to content

Commit

Permalink
log the docker cmd to help debug (#34002)
Browse files Browse the repository at this point in the history
  • Loading branch information
liferoad authored Feb 18, 2025
1 parent 7b51e49 commit 0a75651
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ public RemoteEnvironment createEnvironment(Environment environment, String worke
String containerId = null;
InstructionRequestHandler instructionHandler = null;
try {
LOG.info("Running Docker command: image={}, opts={}, args={}", containerImage, dockerOptsBuilder.build(), argsBuilder.build());
containerId = docker.runImage(containerImage, dockerOptsBuilder.build(), argsBuilder.build());
LOG.debug("Created Docker Container with Container ID {}", containerId);
// Wait on a client from the gRPC server.
Expand Down

0 comments on commit 0a75651

Please sign in to comment.