drpg-logger v2.0.6
DRPG Logger
Pretty logging for Discord.JS


What is DRPG Logger?
DRPG Logger is an advanced console and channel logging package for bots created with Discord.JS. With this package, you can quickly print nicely formatted logs to your console, as well as to any discord Channel.
On top of formatting the logs, any Discord User, Member, or Channel will also be displayed in the console in a nice and easy to read manner (including display name and ID).
This is done by default when a User, GuildMember, or Channel is supplied - which when included in a string forms a pattern such as <@12345678912345678>.
NOTE Currently, this package only supports a single log channel. If your bot is a multi-guild bot (as most are), a log channel per guild is currently not supported.
Install
Run npm install drpg-logger
Usage
- Import the module
import { Logger, LogLevel } from "drpg-logger";- Provide your config in the constructor and access desired functions
import { Client } from "discord.js";
import { Logger, LogLevel } from "drpg-logger";
const client = new Client({}); // However you are creating your discord Client - this is up to you
const logChannelId = process.env.LOG_CHANNEL_ID; // However you decide to provide the log channel. Suggested via environment variables.
const logger = new Logger(client, { defaultLogChannel: logChannelId, dateDisplayTimezone: "+1000" });
client.once("ready", () => {
logger.info("Bot has started!", "Bot Running");
});
client.login(token);- Once initialized, you can use
Loggerto access all of it's static methods.
client.on('interactionCreate', interaction => {
Logger.debug(`${interaction.user} did some interaction in ${interaction.channel}`,"Interaction", interaction.message);
});Suggestions
- For easy and repeated use, it is suggested that your instance of
loggeris exported, so that you can use the same instance throughout. - This package makes heavy use of the colorette library. You can use this library with the
contentproperties, to further enhance the display of your logs.
Default Log Types
By default, a number of log types are included. All of these can be quickly used by calling Logger.trace, Logger.info, Logger.warn and so on.
trace(Priority10)debug(Priority20)info(Priority30)warn(Priority40)error(Priority50)fatal(Priority60)
Configuration
All configuration is done via the ILoggerOptions, which is passed in at the time of creation.
defaultLogChannelRequired. The Channel that will be used for sending Log embeds.allowEmbedLevelOptional. Defaults to30. Each LogType has a Priority. If a new log has less than this level of priority, the Embed will not be sent.allowLogLevelOptional. Defaults to10. Each LogType has a priority. If a new log has less than this level of priority, the console log will not be sent.dateDisplayTimezoneOptional. Defaults to0. Must be procided as a UTC Offset ie+1030for UTC+10:30. Will change the date used for logging.dateFormatOptional. Defaults toYYYY-MM-DD HH:mm:ss. Will be included in all console logs.
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago