diff --git a/src/sfCommand.ts b/src/sfCommand.ts index a4af6e2db..a415801af 100644 --- a/src/sfCommand.ts +++ b/src/sfCommand.ts @@ -47,7 +47,7 @@ export abstract class SfCommand extends Command { * Warn user about sensitive information (access tokens, etc...) before * logging to the console. */ - public logSensitive(msg: string): void { + public logSensitive(msg?: string): void { this.warn(messages.getMessage('warning.security')); this.log(msg); }