Skip to content

Commit 2ac2a03

Browse files
authored
Merge pull request #20 from pjlamb12/logging-fix
Fix Logging Output
2 parents f998893 + 65ba9c1 commit 2ac2a03

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plugins/rss/src/rss.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ const rssPlugin = (routes) => {
4747
writeFileSync(join(config.outDir || '', 'feed.atom'), feed.atom1());
4848
log(`✅ Created ${yellow(config.outDir + '/feed.atom')}`);
4949
writeFileSync(join(config.outDir || '', 'feed.json'), feed.json1());
50-
log(`✅ Created ${yellow(config.outDir + '/feed.atom')}`);
50+
log(`✅ Created ${yellow(config.outDir + '/feed.json')}`);
5151
} catch (error) {
5252
logError('❌ Failed to create RSS feed. Error:', error);
5353
throw error;

0 commit comments

Comments
 (0)