Skip to content

Mowhite29/discord-logging-handler-js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Discord Logging Handler

npm downloads npm version License

A lightweight Node.js logging handler that sends application logs to Discord channels via webhooks, with color-coded embeds, timestamps, and stack traces.

Features

  • Colour-coded embeds by log level
  • Supports full stack traces for errors and exceptions
  • Configurable minimum log level
  • Async, non-blocking log delivery
  • Simple drop-in integration for any Node.js project

Installation

npm install discord-logging-handler

Usage

Initialise the logger with:

Object style (Typescript / Recommended)

import DiscordLog from 'discord-logging-handler';

const logger = new DiscordLog('WEBHOOKURL', { level: 'LEVEL' })

Legacy style (Javascript)

import DiscordLog from 'discord-logging-handler';

const logger = new DiscordLog('WEBHOOKURL', 'LEVEL')
  • WEBHOOKURL: Your webhook from Discord Integrations. Use DEV to enable development mode (logs are suppressed during builds/tests).
  • LEVEL (optional): The minimum level that should trigger logs to be sent to Discord. Defaults to 'ERROR'.

Send logs with:

logInstance.log('Message', 'LEVEL', error)
  • LEVEL (optional): Log severity- 'DEBUG', 'INFO', 'WARNING', 'ERROR', 'CRITICAL'. Defaults to 'INFO'.
  • error (optional): An Error object or exception to include in the log. Defaults to null.

Example

import DiscordLog from 'discord-logging-handler'

const logger = new DiscordLog('YOUR_WEBHOOK_URL', 'DEBUG')

logger.log('This is an INFO log', 'INFO')

try {
    throw new Error('Sample error')
} catch (err) {
    logger.log('An error occurred', 'ERROR', err)
}

Discord Webhook Setup

Discord allows webhooks to be created via Server Settings → Integrations.

  1. Go to Server Settings → Integrations
  2. Under Webhooks, click New Webhook
  3. Copy the generated webhook URL

server settings webhooks

Changelog

See the full Changelog for details on version history.

Contributing

Contributions, issues, and feature requests are welcome!
Feel free to open an issue or submit a pull request on GitHub.

License

MIT License

Copyright (c) 2025 Moses White

About

A JavaScript logging handler that sends log messages to Discord via webhook with colour-coded levels.

Resources

Stars

Watchers

Forks

Packages

No packages published