Skip to content
This repository has been archived by the owner on Dec 9, 2024. It is now read-only.

Commit

Permalink
fix: Log correct function app name in deployment (#304)
Browse files Browse the repository at this point in the history
  • Loading branch information
tbarlow12 committed Sep 13, 2019
1 parent cb5844f commit fa71648
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/functionAppService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ export class FunctionAppService extends BaseService {
* resource-group, storage account, app service plan, and app service at the minimum
*/
public async deploy() {
this.log(`Creating function app: ${this.serviceName}`);
this.log(`Creating function app: ${FunctionAppResource.getResourceName(this.config)}`);

const armService = new ArmService(this.serverless, this.options);
const { armTemplate, type } = this.config.provider;
Expand Down

0 comments on commit fa71648

Please sign in to comment.