]> git.digitality.be Git - pdw25-26/commitdiff
Mini modif affichage console
authorSacheat <sacha.libion@outlook.com>
Sun, 1 Mar 2026 14:15:03 +0000 (15:15 +0100)
committerSacheat <sacha.libion@outlook.com>
Sun, 1 Mar 2026 14:15:03 +0000 (15:15 +0100)
Wallette/server/modules/strategy/server.js

index a0f0e4eb1df8ce2c8900158dfa89e202eb8ec9cd..daba05279603b61b1f8abb47d113a45231359a42 100644 (file)
@@ -19,9 +19,9 @@ dotenv.config({ path: path.resolve(__dirname, '../../.env') });
 // Lance le cron worker de la stratégie (s'il existe) pour que les logs soient visibles dès le démarrage du serveur.
 try {
   await import('./index.js');
-  console.log('✅ Strategy cron worker initialisé (index.js)');
+  console.log('Strategy cron worker initialisé (index.js)');
 } catch (err) {
-  console.log('ℹ️ Strategy cron worker non démarré:', err.message);
+  console.log('Strategy cron worker non démarré:', err.message);
 }
 
 const PORT = process.env.STRATEGY_PORT || 3002;