Skip to content

Commit

Permalink
fix(core): log level was 'info' when it should have been 'silly'
Browse files Browse the repository at this point in the history
  • Loading branch information
eysi09 committed Jul 26, 2019
1 parent 4afeebf commit fa9aff9
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 fa9aff9

Please sign in to comment.