diff --git a/garden-service/src/commands/run/task.ts b/garden-service/src/commands/run/task.ts index 4e9cbe74cf..a1c81a46a9 100644 --- a/garden-service/src/commands/run/task.ts +++ b/garden-service/src/commands/run/task.ts @@ -64,7 +64,9 @@ export class RunTaskCommand extends Command { if (!result.error) { log.info("") - log.info(chalk.white(result.output.output)) + // TODO: The command will need to be updated to stream logs: see https://github.com/garden-io/garden/issues/630. + // It's ok with the current providers but the shape might change in the future. + log.info(chalk.white(result.output.outputs.log)) printFooter(footerLog) }