From bba1c171cae04add40c35d65dcdc7876dcf25034 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alo=C3=AFs=20Coquillard?= Date: Sat, 23 May 2026 08:24:08 +0000 Subject: [PATCH] ajout logging --- index.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.html b/index.html index 8422c3c..febe527 100644 --- a/index.html +++ b/index.html @@ -367,6 +367,8 @@ function formatDuration(ms) { function getStatus(results) { if (!results || results.length === 0) return { state: 'loading', text: 'Inconnu' }; + console.log('Premier résultat:', JSON.stringify(results[0])); + console.log('Deuxième résultat:', JSON.stringify(results[1])); const last = results[0]; if (last.success) {