Skip to content

Commit 70c0430

Browse files
committed
test
1 parent a1f9ddd commit 70c0430

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

lib/DeploymentProvider/Providers/BaseWebAppDeploymentProvider.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@ class BaseWebAppDeploymentProvider {
9090
this.kuduService = yield this.appServiceUtility.getKuduService();
9191
this.kuduServiceUtility = new KuduServiceUtility_1.KuduServiceUtility(this.kuduService);
9292
this.applicationURL = yield this.appServiceUtility.getApplicationURL();
93-
core.info(`Application config is: ${JSON.stringify(this.appService.getConfiguration())}`);
93+
let config = yield this.appService.getConfiguration();
94+
core.info(`App Service Configuration: ${JSON.stringify(config)}`);
9495
});
9596
}
9697
initializeForPublishProfile() {

src/DeploymentProvider/Providers/BaseWebAppDeploymentProvider.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ export abstract class BaseWebAppDeploymentProvider implements IWebAppDeploymentP
6666

6767
this.applicationURL = await this.appServiceUtility.getApplicationURL();
6868

69-
core.info(`Application config is: ${JSON.stringify(this.appService.getConfiguration())}`);
69+
let config = await this.appService.getConfiguration();
70+
core.info(`App Service Configuration: ${JSON.stringify(config)}`);
7071
}
7172

7273
private async initializeForPublishProfile() {

0 commit comments

Comments
 (0)