From aa1a701f198b88d6f2c46f5c5e7ecb98fd1af5a0 Mon Sep 17 00:00:00 2001 From: toast-ts <96593068+toast-ts@users.noreply.github.com> Date: Sun, 7 May 2023 09:40:32 +1000 Subject: [PATCH] Change back to console.log, I regret the change earlier. --- src/MPLoop.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/MPLoop.ts b/src/MPLoop.ts index 21d6301..0c7f182 100644 --- a/src/MPLoop.ts +++ b/src/MPLoop.ts @@ -50,10 +50,10 @@ export default async(client:TClient,Channel:string,Message:string)=>{ if (DSS.fetchResult.length != 0){ error = true; if (DSS.data.slots === undefined) return; - console.error(client.logTime(), DSS.fetchResult); + console.log(client.logTime(), DSS.fetchResult); } else if (CSG.fetchResult.length != 0){ error = true; - console.error(client.logTime(), CSG.fetchResult); + console.log(client.logTime(), CSG.fetchResult); } if (error){ // Blame Nawdic embed.setTitle('Host is not responding').setColor(client.config.embedColorRed);