Skip to content

Instantly share code, notes, and snippets.

View GlowingRain's full-sized avatar

GlowingRain

  • Falkland Islands
View GitHub Profile
@GlowingRain
GlowingRain / Logger.js
Last active October 25, 2020 18:12
Custom logger made with Wiston for Discord Bots
const { createLogger, format, transports, addColors } = require('winston');
const { combine } = format;
// Levels
const customLevels = {
levels: {
error: 0,
warn: 1,
client: 2,
info: 3,