From 1cc016c5a3c04d72f095d95100327e41dc90e1f0 Mon Sep 17 00:00:00 2001 From: George Young Date: Tue, 18 Nov 2025 17:40:13 +1300 Subject: [PATCH] remove logging, rebuild --- dist/index.js | 3 +-- src/main.ts | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/dist/index.js b/dist/index.js index 2f0d018..fe86ce7 100644 --- a/dist/index.js +++ b/dist/index.js @@ -478,7 +478,6 @@ class TestReporter { return results; } getParser(reporter, options) { - core.info(`Selecting parser for reporter '${reporter}'`); switch (reporter) { case 'dart-json': return new dart_json_parser_1.DartJsonParser(options, 'dart'); @@ -505,7 +504,7 @@ class TestReporter { case 'swift-xunit': return new swift_xunit_parser_1.SwiftXunitParser(options); default: - throw new Error(`Input variable 'reporter' is set to invalid value '${reporter}' including this change?`); + throw new Error(`Input variable 'reporter' is set to invalid value '${reporter}'`); } } } diff --git a/src/main.ts b/src/main.ts index e539163..58b7ade 100644 --- a/src/main.ts +++ b/src/main.ts @@ -255,7 +255,6 @@ class TestReporter { } getParser(reporter: string, options: ParseOptions): TestParser { - core.info(`Selecting parser for reporter '${reporter}'`) switch (reporter) { case 'dart-json': return new DartJsonParser(options, 'dart') @@ -282,7 +281,7 @@ class TestReporter { case 'swift-xunit': return new SwiftXunitParser(options) default: - throw new Error(`Input variable 'reporter' is set to invalid value '${reporter}' including this change?`) + throw new Error(`Input variable 'reporter' is set to invalid value '${reporter}'`) } } }