Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: APIM feature updates #312

Merged
merged 12 commits into from
Sep 6, 2019
Prev Previous commit
Removed extra comma in baseService
  • Loading branch information
wbreza committed Sep 6, 2019
commit dc9a92ecc1c744f8de9936908748153f9b2a5467
2 changes: 1 addition & 1 deletion src/services/baseService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ export abstract class BaseService {
* Log message to Serverless CLI
* @param message Message to log
*/
protected log(message: string, options?: ServerlessLogOptions, entity?: string, ) {
protected log(message: string, options?: ServerlessLogOptions, entity?: string) {
(this.serverless.cli.log as any)(message, entity, options);
}

Expand Down