Skip to content

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 authored Sep 4, 2019
1 parent 401c120 commit 09615ee
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 09615ee

Please sign in to comment.