Skip to content

Commit

Permalink
chore(git): added actions to build release
Browse files Browse the repository at this point in the history
  • Loading branch information
Bread White committed Jan 6, 2025
1 parent 5a185fc commit a48d66b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/feeds/rss_feeds/mod.rs
Original file line number Diff line number Diff line change
@@ -114,7 +114,7 @@ where

pub async fn processing_event(&self, channel: rss::Channel) -> Result<(), anyhow::Error> {
let topic = channel.title();
tracing::info!(topic=topic, "received new rss content");
tracing::info!(topic = topic, "received new rss content");

for item in channel.items() {
let response = match self.extract_item(item).await {
@@ -128,7 +128,7 @@ where
let art_id = response.guid();
if self.cacher().contains(art_id).await {
tracing::warn!(
topic=topic,
topic = topic,
article = art_id,
"news article has been already parsed"
);
@@ -144,7 +144,7 @@ where
}

tracing::info!(
topic=topic,
topic = topic,
article = art_id,
"article has been published successful"
);

0 comments on commit a48d66b

Please sign in to comment.