diff --git a/dist/index.js b/dist/index.js index e2b6f27..7612bc7 100644 --- a/dist/index.js +++ b/dist/index.js @@ -178,6 +178,7 @@ function writeFeedToFile(feedUrl, existingFileLocation, tempFileLocation) { }; const builder = new fast_xml_parser_1.XMLBuilder(xmlBuilderOptions); const output = builder.build(xmlSource); + core.debug(output); fs.writeFileSync(tempFileLocation, output); } diff --git a/src/authutil.ts b/src/authutil.ts index e4fd823..92378cd 100644 --- a/src/authutil.ts +++ b/src/authutil.ts @@ -191,7 +191,7 @@ function writeFeedToFile( const output = builder.build(xmlSource); - core.debug(output) + core.debug(output); fs.writeFileSync(tempFileLocation, output); }