diff --git a/commands/DatabaseCommand.js b/commands/DatabaseCommand.js
index 1401a112ad666edc65bf8fd1c9063a3eed65da21..3c9250f597427b2985d9b695f4b6535827b85c64 100644
--- a/commands/DatabaseCommand.js
+++ b/commands/DatabaseCommand.js
@@ -107,11 +107,6 @@ class DatabaseCommand{
             return wrongCatMessage(category);
         }
         const wrongIndexes = indexes.filter(index => index < 0 || index >= list.length);
-
-        console.log(list);
-        console.log(list.length);
-        console.log(wrongIndexes);
-
         if(wrongIndexes.length > 0) return `${wrongIndexes.join(',')} invalides pour '${category}'`;
 
         const newList = list.filter((_, index) => !indexes.includes(index));