add server search logs
This commit is contained in:
parent
851db0a673
commit
44be436d2d
@ -33,6 +33,12 @@ app.get('/search', async (req, res) => {
|
||||
filmages.searchAndEnrich(q).catch(e => { console.error('Filmages failed:', e.message); return []; })
|
||||
]);
|
||||
|
||||
console.log('===== SEARCH LOGS =====');
|
||||
console.log('Cinecheck results:', cine.length);
|
||||
console.log('CSM results:', cs.length);
|
||||
console.log('Filmages results:', fa.length);
|
||||
console.log('Raw CSM data:', cs); // Inspect full data
|
||||
|
||||
let merged = mergeResults([cine, cs, fa]);
|
||||
|
||||
// Sort merged results based on query relevance
|
||||
|
Loading…
x
Reference in New Issue
Block a user