Skip to content

Commit

Permalink
fix: allow empty log message
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley committed Jun 28, 2021
1 parent 1faa4a6 commit 1272215
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/deployer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export abstract class Deployer extends EventEmitter {
/**
* Log messages to the console
*/
public log(msg: string | undefined, ...args: string[]): void {
public log(msg?: string | undefined, ...args: string[]): void {
cli.log(msg, ...args);
}

Expand Down

0 comments on commit 1272215

Please sign in to comment.