Skip to content

Commit 8c1cd67

Browse files
committed
Mise à jour du service BackendConfigService pour inclure le chemin des backends lors du chargement de la configuration
1 parent 2bcc66c commit 8c1cd67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend-runner/backend-config.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export class BackendConfigService implements OnModuleInit {
2525

2626
public async initialize(): Promise<void> {
2727
const backendsConfigData = [];
28-
this.logger.log('Load backends config...');
28+
this.logger.log('Load backends config...', this.config.get<string>('application.backendsPath'));
2929

3030
const crawler = new fdir().withBasePath().filter((path: string) => path.endsWith('.yml'));
3131
const files = crawler.crawl(this.config.get<string>('application.backendsPath')).sync().sort();

0 commit comments

Comments
 (0)