Add logger to project #183
5 changed files with 7 additions and 4 deletions
1
.dev.env
1
.dev.env
|
@ -12,6 +12,7 @@ BOT_AUTHOR=Vylpes
|
||||||
BOT_OWNERID=147392775707426816
|
BOT_OWNERID=147392775707426816
|
||||||
BOT_CLIENTID=682942374040961060
|
BOT_CLIENTID=682942374040961060
|
||||||
BOT_ENV=4
|
BOT_ENV=4
|
||||||
|
BOT_VERBOSE=false
|
||||||
BOT_ADMINS=147392775707426816,887272961504071690
|
BOT_ADMINS=147392775707426816,887272961504071690
|
||||||
|
|
||||||
ABOUT_FUNDING=
|
ABOUT_FUNDING=
|
||||||
|
|
|
@ -12,6 +12,7 @@ BOT_AUTHOR=Vylpes
|
||||||
BOT_OWNERID=147392775707426816
|
BOT_OWNERID=147392775707426816
|
||||||
BOT_CLIENTID=1093810443589529631
|
BOT_CLIENTID=1093810443589529631
|
||||||
BOT_ENV=1
|
BOT_ENV=1
|
||||||
|
BOT_VERBOSE=false
|
||||||
BOT_ADMINS=147392775707426816,887272961504071690
|
BOT_ADMINS=147392775707426816,887272961504071690
|
||||||
|
|
||||||
ABOUT_FUNDING=
|
ABOUT_FUNDING=
|
||||||
|
|
|
@ -12,6 +12,7 @@ BOT_AUTHOR=Vylpes
|
||||||
BOT_OWNERID=147392775707426816
|
BOT_OWNERID=147392775707426816
|
||||||
BOT_CLIENTID=1147976642942214235
|
BOT_CLIENTID=1147976642942214235
|
||||||
BOT_ENV=2
|
BOT_ENV=2
|
||||||
|
BOT_VERBOSE=false
|
||||||
BOT_ADMINS=147392775707426816,887272961504071690
|
BOT_ADMINS=147392775707426816,887272961504071690
|
||||||
|
|
||||||
ABOUT_FUNDING=
|
ABOUT_FUNDING=
|
||||||
|
|
|
@ -1,9 +1,8 @@
|
||||||
import { LogLevel } from "typeorm";
|
|
||||||
import { Logger, createLogger, format, transports } from "winston";
|
import { Logger, createLogger, format, transports } from "winston";
|
||||||
import { CoreClient } from "./client";
|
import { CoreClient } from "./client";
|
||||||
|
|
||||||
export default class AppLogger {
|
export default class AppLogger {
|
||||||
public static InitialiseLogger(logLevel: LogLevel, outputToConsole: boolean): Logger {
|
public static InitialiseLogger(logLevel: string, outputToConsole: boolean): Logger {
|
||||||
const customFormat = format.printf(({ level, message, timestamp, label }) => {
|
const customFormat = format.printf(({ level, message, timestamp, label }) => {
|
||||||
return `${timestamp} [${label}] ${level}: ${message}`;
|
return `${timestamp} [${label}] ${level}: ${message}`;
|
||||||
});
|
});
|
||||||
|
|
|
@ -47,7 +47,9 @@ export class CoreClient extends Client {
|
||||||
super({ intents: intents });
|
super({ intents: intents });
|
||||||
dotenv.config();
|
dotenv.config();
|
||||||
|
|
||||||
CoreClient.Logger = AppLogger.InitialiseLogger("info", true);
|
CoreClient.Environment = Number(process.env.BOT_ENV);
|
||||||
|
|
||||||
|
CoreClient.Logger = AppLogger.InitialiseLogger(process.env.BOT_VERBOSE == "true" ? "verbose" : "info", CoreClient.Environment == Environment.Local);
|
||||||
|
|
||||||
CoreClient._commandItems = [];
|
CoreClient._commandItems = [];
|
||||||
CoreClient._buttonEvents = [];
|
CoreClient._buttonEvents = [];
|
||||||
|
@ -56,7 +58,6 @@ export class CoreClient extends Client {
|
||||||
this._util = new Util();
|
this._util = new Util();
|
||||||
this._webhooks = new Webhooks();
|
this._webhooks = new Webhooks();
|
||||||
|
|
||||||
CoreClient.Environment = Number(process.env.BOT_ENV);
|
|
||||||
console.log(`Bot Environment: ${CoreClient.Environment}`);
|
console.log(`Bot Environment: ${CoreClient.Environment}`);
|
||||||
|
|
||||||
CoreClient.AllowDrops = true;
|
CoreClient.AllowDrops = true;
|
||||||
|
|
Loading…
Reference in a new issue