@@ -560,7 +560,7 @@ async function checkinSimkl(parsedId, config) {
560560 return ;
561561 }
562562
563- logger . debug ( `[Simkl Checkin] Checking in movie (${ buildIdSummary ( ids ) } )` ) ;
563+ logger . debug ( `[Simkl Checkin] Tracking movie (${ buildIdSummary ( ids ) } )` ) ;
564564 await checkinMovie ( ids , accessToken ) ;
565565 return ;
566566 }
@@ -605,7 +605,7 @@ async function checkinTrakt(parsedId, config) {
605605 return ;
606606 }
607607
608- logger . debug ( `[Trakt Checkin] Checking in movie (${ buildIdSummary ( ids ) } )` ) ;
608+ logger . debug ( `[Trakt Checkin] Tracking movie (${ buildIdSummary ( ids ) } )` ) ;
609609 await checkinMovie ( ids , accessToken ) ;
610610 return ;
611611 }
@@ -638,35 +638,35 @@ async function checkinPublicMetaDB(parsedId, config) {
638638 const apiKey = config . apiKeys ?. publicmetadb ;
639639
640640 if ( ! apiKey ) {
641- logger . debug ( '[PublicMetaDB Checkin ] Skipping - missing API key' ) ;
641+ logger . debug ( '[PublicMetaDB Watch Tracking ] Skipping - missing API key' ) ;
642642 return ;
643643 }
644644
645645 if ( parsedId . type === 'movie' ) {
646646 const ids = normalizeIdsForMovie ( parsedId ) ;
647647 if ( ! ids ) {
648- logger . debug ( `[PublicMetaDB Checkin ] No valid identifiers for movie provider ${ parsedId . provider } ` ) ;
648+ logger . debug ( `[PublicMetaDB Watch Tracking ] No valid identifiers for movie provider ${ parsedId . provider } ` ) ;
649649 return ;
650650 }
651- logger . debug ( `[PublicMetaDB Checkin] Checking in movie (${ buildIdSummary ( ids ) } )` ) ;
651+ logger . debug ( `[PublicMetaDB Watch Tracking] Tracking movie (${ buildIdSummary ( ids ) } )` ) ;
652652 await checkinMovie ( ids , apiKey ) ;
653653 return ;
654654 }
655655
656656 if ( parsedId . type === 'series' ) {
657657 const resolution = await resolveSeriesIds ( parsedId , config ) ;
658658 if ( ! resolution ) {
659- logger . debug ( `[PublicMetaDB Checkin ] Unable to resolve identifiers for series provider ${ parsedId . provider } ` ) ;
659+ logger . debug ( `[PublicMetaDB Watch Tracking ] Unable to resolve identifiers for series provider ${ parsedId . provider } ` ) ;
660660 return ;
661661 }
662- logger . debug ( `[PublicMetaDB Checkin] Checking in episode (${ buildIdSummary ( resolution . ids ) } ) S${ resolution . season } E${ resolution . episode } ` ) ;
662+ logger . debug ( `[PublicMetaDB Watch Tracking] Tracking episode (${ buildIdSummary ( resolution . ids ) } ) S${ resolution . season } E${ resolution . episode } ` ) ;
663663 await checkinEpisode ( resolution . ids , resolution . season , resolution . episode , apiKey ) ;
664664 return ;
665665 }
666666
667- logger . debug ( `[PublicMetaDB Checkin ] Unsupported content type: ${ parsedId . type } ` ) ;
667+ logger . debug ( `[PublicMetaDB Watch Tracking ] Unsupported content type: ${ parsedId . type } ` ) ;
668668 } catch ( error ) {
669- logger . error ( `[PublicMetaDB Checkin ] Unexpected tracking error: ${ error . message } ` , {
669+ logger . error ( `[PublicMetaDB Watch Tracking ] Unexpected tracking error: ${ error . message } ` , {
670670 stack : error . stack
671671 } ) ;
672672 }
0 commit comments