File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -41,8 +41,6 @@ export class RulesAction {
4141
4242 public async execute ( input : RulesInput ) : Promise < void > {
4343 const config : CodeAnalyzerConfig = this . dependencies . configFactory . create ( input [ 'config-file' ] ) ;
44- //console.log(`selectors: ${JSON.stringify(input["rule-selector"])}`);
45- //input["rule-selector"] = [input["rule-selector"].join(',')];
4644 const logWriter : LogFileWriter = await LogFileWriter . fromConfig ( config ) ;
4745 this . dependencies . actionSummaryViewer . viewPreExecutionSummary ( logWriter . getLogDestination ( ) ) ;
4846 // We always add a Logger Listener to the appropriate listeners list, because we should Always Be Logging.
@@ -67,7 +65,6 @@ export class RulesAction {
6765 // EngineProgressListeners should start listening right before we call Core's `.selectRules()` method, since
6866 // that's when progress events can start being emitted.
6967 this . dependencies . progressListeners . forEach ( listener => listener . listen ( core ) ) ;
70- //console.log(`selectors 2: ${JSON.stringify(input['rule-selector'])}`);
7168 const ruleSelection : RuleSelection = await core . selectRules ( input [ "rule-selector" ] , selectOptions ) ;
7269 this . emitEngineTelemetry ( ruleSelection , enginePlugins . flatMap ( p => p . getAvailableEngineNames ( ) ) ) ;
7370 // After Core is done running, the listeners need to be told to stop, since some of them have persistent UI elements
You can’t perform that action at this time.
0 commit comments