chore: log which title is being selected when loading aniwatch
This commit is contained in:
@@ -53,8 +53,10 @@ export const findBestMatchingTitle = (
|
|||||||
console.log(title.english, englishScore);
|
console.log(title.english, englishScore);
|
||||||
console.log(title.userPreferred, userPreferredScore);
|
console.log(title.userPreferred, userPreferredScore);
|
||||||
if (userPreferredScore >= englishScore) {
|
if (userPreferredScore >= englishScore) {
|
||||||
|
console.log("User preferred", userPreferredBestMatch);
|
||||||
return userPreferredBestMatch;
|
return userPreferredBestMatch;
|
||||||
} else {
|
} else {
|
||||||
|
console.log("English", englishBestMatch);
|
||||||
return englishBestMatch;
|
return englishBestMatch;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user