diff --git a/src/main.ts b/src/main.ts index 58b7ade..e539163 100644 --- a/src/main.ts +++ b/src/main.ts @@ -255,6 +255,7 @@ 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') @@ -281,7 +282,7 @@ class TestReporter { case 'swift-xunit': return new SwiftXunitParser(options) default: - throw new Error(`Input variable 'reporter' is set to invalid value '${reporter}'`) + throw new Error(`Input variable 'reporter' is set to invalid value '${reporter}' including this change?`) } } }