Skip to content
This repository was archived by the owner on Apr 12, 2025. It is now read-only.

Commit b508aa0

Browse files
committed
fix: remove debugs
1 parent 88d91b2 commit b508aa0

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ run:
3333
REPLEX_ENABLE_CONSOLE=0 \
3434
REPLEX_CACHE_TTL=0 \
3535
REPLEX_HUB_RESTRICTIONS=1 \
36-
RUST_LOG="info,replex=debug,replex::transform=debug" \
36+
RUST_LOG="info,replex=info,replex::transform=debug" \
3737
REPLEX_NTF_WATCHLIST_FORCE=0 \
3838
RUSTFLAGS=-Awarnings \
3939
cargo watch -w src -x run

src/routes.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -553,12 +553,11 @@ pub async fn transform_hubs_response(
553553
let params: PlexContext = req.extract().await.unwrap();
554554
let plex_client = PlexClient::from_request(req, params.clone());
555555
let content_type = get_content_type_from_headers(req.headers_mut());
556-
dbg!(&res);
557-
dbg!(&req);
556+
558557
let mut container: MediaContainerWrapper<MediaContainer> =
559558
from_salvo_response(res).await?;
560559
container.content_type = content_type;
561-
dbg!("GO");
560+
562561
TransformBuilder::new(plex_client, params.clone())
563562
.with_filter(HubRestrictionFilter)
564563
.with_transform(HubStyleTransform { is_home: true })

0 commit comments

Comments
 (0)