From fa3d74e8a85042ee0cd443dcbb7195d375491cad Mon Sep 17 00:00:00 2001 From: Benjamin Kraft Date: Thu, 9 May 2024 22:15:29 +0200 Subject: [PATCH] less useless logging --- src/bot.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/bot.ts b/src/bot.ts index 9fea6e8..938ec63 100644 --- a/src/bot.ts +++ b/src/bot.ts @@ -52,7 +52,6 @@ export class UEMEloBot extends Client { } async updatePlayers(){ - console.log("Started full update..."); for (let p of this.players){ await p.updateFullName(); await p.updateCurrentElo(); @@ -61,7 +60,6 @@ export class UEMEloBot extends Client { console.log(`Updated start elo for ${p}`); } } - console.log("Finished full update!"); this.savePlayersToFile(); }