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

fix: Log correct function app name in deployment #304

Merged
merged 1 commit into from
Sep 4, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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