Skip to content

Commit

Permalink
fix(core): log exec provider resolution at info level (#5469)
Browse files Browse the repository at this point in the history
Reverts an earlier commit where we set the log level for exec providers
to verbose which means logs from init scripts aren't visible.

That was a mistake and this fixes that.
  • Loading branch information
eysi09 committed Nov 21, 2023
1 parent d467b1d commit 539abf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/tasks/resolve-provider.ts
Expand Up @@ -41,7 +41,7 @@ import type { Log } from "../logger/log-entry.js"
* resolved per se. A bit hacky but this is just a cosmetic change.
*/
function getProviderLog(providerName: string, log: Log) {
const verboseLogProviders = ["exec", "templated", "container"]
const verboseLogProviders = ["templated", "container"]
const fixLevel = verboseLogProviders.includes(providerName) ? LogLevel.verbose : undefined
return log.createLog({ name: providerName, fixLevel })
}
Expand Down

0 comments on commit 539abf9

Please sign in to comment.