Skip to content

Commit

Permalink
Merge pull request #1036 from garden-io/fix-log-level
Browse files Browse the repository at this point in the history
fix(core): log level was 'info' when it should have been 'silly'
  • Loading branch information
eysi09 authored Jul 26, 2019
2 parents 4afeebf + fa9aff9 commit 1e41d8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion garden-service/src/garden.ts
Original file line number Diff line number Diff line change
Expand Up @@ -710,7 +710,7 @@ export class Garden {
*/
private async loadModuleConfigs(path: string): Promise<ModuleConfig[]> {
path = resolve(this.projectRoot, path)
this.log.info(`Load module configs from ${path}`)
this.log.silly(`Load module configs from ${path}`)
const resources = await loadConfig(this.projectRoot, path)
return <ModuleResource[]>resources.filter(r => r.kind === "Module")
}
Expand Down

0 comments on commit 1e41d8a

Please sign in to comment.