Skip to content

Commit

Permalink
refactor(container): revert build logs log level to debug
Browse files Browse the repository at this point in the history
Turns out logging build logs this can get really noisy if we don't
truncate the output somehow. I tried truncating it with the cliTruncate
function but it messed up the terminal cursor position and by extension
the entire log output. Putting this on ice for now.
  • Loading branch information
eysi09 committed Jan 22, 2020
1 parent b97d852 commit f7fc5f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion garden-service/src/plugins/container/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export async function buildContainerModule({ module, log }: BuildModuleParams<Co
}

// Stream log to a status line
const outputStream = createOutputStream(log.placeholder(LogLevel.info))
const outputStream = createOutputStream(log.placeholder(LogLevel.debug))
const timeout = module.spec.build.timeout
const buildLog = await containerHelpers.dockerCli(module, [...cmdOpts, buildPath], { outputStream, timeout })

Expand Down

0 comments on commit f7fc5f5

Please sign in to comment.