private _maskSecrets()

in src/SqlConnectionConfig.ts [116:125]


    private _maskSecrets(): void {
        // User ID could be client ID in some authentication types
        if (this.UserId) {
            core.setSecret(this.UserId);
        }

        if (this.Password) {
            core.setSecret(this.Password);
        }
    }