Skip to content

Commit

Permalink
cfkv
Browse files Browse the repository at this point in the history
  • Loading branch information
komal-sai-yral committed Dec 11, 2024
1 parent b4a42c5 commit 7326a1b
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions ssr/src/utils/ml_feed/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -259,12 +259,6 @@ pub async fn get_posts_ml_feed_cache_paginated(
start: u64,
limit: u64,
) -> Result<Vec<PostId>, ServerFnError> {
leptos::logging::log!(
"get_posts_ml_feed_cache_paginated {} {} {}",
start,
limit,
canister_id.to_text()
);
get_posts_ml_feed_cache_paginated_impl(canister_id.to_text(), start, limit).await
}

Expand All @@ -273,7 +267,6 @@ pub async fn get_coldstart_feed_paginated(
start: u64,
limit: u64,
) -> Result<Vec<PostId>, ServerFnError> {
leptos::logging::log!("get_coldstart_feed_paginated {} {}", start, limit);
get_posts_ml_feed_cache_paginated_impl("global-feed".to_string(), start, limit).await
}

Expand Down

0 comments on commit 7326a1b

Please sign in to comment.