From db31f3f31ff590d0957a7228e22bb9e7fa2ecbd4 Mon Sep 17 00:00:00 2001 From: ChrisChrome Date: Mon, 22 Jul 2024 02:47:21 -0600 Subject: [PATCH] Fix that --- index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.js b/index.js index f1b1776..64860ee 100644 --- a/index.js +++ b/index.js @@ -1,3 +1,4 @@ +console.log("Starting up...") require("dotenv").config() const funcs = require("./helpers.js"); const fs = require("fs"); @@ -225,7 +226,7 @@ process.on('uncaughtException', (error) => { console.error('Uncaught exception:', error); // save full stack to file in errors/timestamp.log fs.writeFileSync(`errors/exception-${Date.now()}.log`, error.stack); -} +}); const startTime = new Date(); client.login(process.env.DISCORD_TOKEN) \ No newline at end of file