Skip to main content

django-discordo

A janky Discord webhook handler originally written for OTIS-WEB.

Features, apparently

  • 🎨 Color-coded log levels with emoji indicators
  • 📝 Automatic formatting of Django request data
  • 🔒 Automatic redaction of sensitive data (passwords, tokens)
  • 🎯 Support for custom log levels (VERBOSE, SUCCESS, ACTION)
  • 🔧 Configurable webhook URLs per log level
  • 📊 Rich metadata including user info, status codes, and stack traces

Installation

For example, if using uv:

uv add django-discordo

Contrary to the name, Django is actually an optional dependency. This can also be used for logging in non-Django applications; in that case Django-specific functionality is turned off.

Configuration

1. Create a Discord Webhook

  1. Go to Server Settings → Integrations → Webhooks
  2. Click "New Webhook"
  3. Copy the webhook URL

2. Configure Webhook URL

There are two possible ways to do this (first one takes precedence):

Use settings.py (for Django applications)

Add your webhook URL to your Django settings.py:

# Simple configuration - single webhook for all log levels
DISCORD_WEBHOOK_URL = "https://discord.com/api/webhooks/YOUR_WEBHOOK_URL"

# OR: Advanced configuration - different webhooks per log level
DISCORD_WEBHOOK_URLS = {
    "CRITICAL": "https://discord.com/api/webhooks/CRITICAL_WEBHOOK",
    "ERROR": "https://discord.com/api/webhooks/ERROR_WEBHOOK",
    "WARNING": "https://discord.com/api/webhooks/WARNING_WEBHOOK",
    "DEFAULT": "https://discord.com/api/webhooks/DEFAULT_WEBHOOK",  # Fallback for other levels
}

(Webhook URL's are considered secrets, so you probably don't want to actually hardcode the URL's into settings.py if your source code is public.)

Using environment variables directly

If the URLs are not configured in settings.py (or Django is not present at all) then django-discordo will check environment variables instead:

# In your .env file
DISCORD_WEBHOOK_URL=https://discord.com/api/webhooks/YOUR_WEBHOOK_URL
# Or level-specific
DISCORD_WEBHOOK_URL_ERROR=https://discord.com/api/webhooks/YOUR_ERROR_WEBHOOK_URL

3. Using the handler

In Django, add the Discord handler to your Django settings.py, e.g.

import logging

LOGGING = {
    "version": 1,
    "disable_existing_loggers": False,
    "handlers": {
        "discord": {
            "class": "django_discordo.DiscordWebhookHandler",
            "level": "WARNING",
        },
    },
    "root": {
        "handlers": ["discord"],
        "level": "INFO",
    },
}

Otherwise, import the webhook handler directly, say:

from django_discordo import DiscordWebhookHandler

logger = logging.getLogger("root")
logger.setLevel(logging.INFO)
logger.addHandler(DiscordWebhookHandler())
logger.addHandler(logging.StreamHandler())

Delivery is non-blocking

Since v1.2, the HTTP request to Discord happens on a background worker thread, so e.g. a Discord outage doesn't cause everything to burn.

You can tune this with handler options:

LOGGING = {
    "handlers": {
        "discord": {
            "class": "django_discordo.DiscordWebhookHandler",
            "level": "WARNING",
            # all of the below are optional; defaults shown
            "blocking": False,  # True = post inline, the pre-1.2 behavior
            "timeout": (3.05, 10),  # (connect, read) seconds, or a single float
            "queue_size": 1000,  # max records waiting to be sent
            "shutdown_timeout": 5.0,  # seconds to wait for delivery at exit
        },
    },
}

Custom Log Levels

django-discordo provides three custom log levels in addition to Django's standard levels:

  • VERBOSE (level 15): Between DEBUG and INFO, for detailed but not critical information
  • SUCCESS (level 25): Between INFO and WARNING, for successful operations
  • ACTION (level 35): Between WARNING and ERROR, for important user actions

Usage Example

import logging
from django_discordo import VERBOSE_LOG_LEVEL, SUCCESS_LOG_LEVEL, ACTION_LOG_LEVEL

logger = logging.getLogger(__name__)

# Using custom log levels
logger.log(VERBOSE_LOG_LEVEL, "Student has submitted the problem set.")
logger.log(SUCCESS_LOG_LEVEL, "Student has found new diamond.")
logger.log(ACTION_LOG_LEVEL, "Student has updated a link in ARCH, please check it.")

Advanced Configuration

Filtering Logs

You can add filters to prevent certain logs from being sent to Discord; e.g. OTIS-WEB filters out certain 404 errors

def filter_useless_404(record):
    if record.args and len(record.args) >= 2:
        return "wp-include" not in str(record.args[1])
    return True


LOGGING = {
    "filters": {
        "filter_useless_404": {
            "()": "django.utils.log.CallbackFilter",
            "callback": filter_useless_404,
        },
    },
    "handlers": {
        "discord": {
            "class": "django_discordo.DiscordWebhookHandler",
            "level": "WARNING",
            "filters": ["filter_useless_404"],
        },
    },
}

Testing Mode

When running tests, you may want to disable Discord logging to avoid spam:

import logging
from django_discordo import ACTION_LOG_LEVEL

if TESTING:
    logging.disable(ACTION_LOG_LEVEL)

This disables all logs at ACTION level and below (including SUCCESS, INFO, VERBOSE, and DEBUG).

How It Works

When a log record is emitted:

  1. The handler formats the log message with appropriate emoji and color
  2. Extracts metadata (user, module, filename, line number, status code)
  3. Includes Django request details (method, path, user agent, POST data)
  4. Redacts sensitive fields (passwords, tokens)
  5. Hands the finished embed to a background thread, which posts it to the webhook

Steps 1–4 run on the thread that logged, because the request object is only valid there; only the network call in step 5 is deferred.

Discord Embed Format

Each log message appears as a Discord embed with:

  • Title: Log message (with emoji indicator)
  • Color: Coded by log level (red for errors, yellow for warnings, etc.)
  • Fields: Status code, log level, module, user, filename
  • Description: Detailed message, exception traceback, and request data

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_discordo-1.2.0.tar.gz (8.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_discordo-1.2.0-py3-none-any.whl (9.0 kB view details)

Uploaded Python 3

File details

Details for the file django_discordo-1.2.0.tar.gz.

File metadata

  • Download URL: django_discordo-1.2.0.tar.gz
  • Upload date:
  • Size: 8.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for django_discordo-1.2.0.tar.gz
Algorithm Hash digest
SHA256 f33efd52c3378cd770ff38640243e81c70a3f815136f4027ac529d25d87a2582
MD5 ddd43380dcbdf659769ab46a042643e9
BLAKE2b-256 ba6ad85351bda01800b88abc48fed1470a340661d5bbcde2a8930ccd9237bfeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_discordo-1.2.0.tar.gz:

Publisher: release.yml on vEnhance/django-discordo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file django_discordo-1.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for django_discordo-1.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 011c58b00ddef885bcd2c24f3127008d17ee760aba99aa8814eed396d2ee0acd
MD5 28ffc87757ab229d362de4f96d3eb9ac
BLAKE2b-256 88cdfa2956debc7a7dccd23ddea4a14e08a46dc3c49471a55b34f57f4217c91d

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_discordo-1.2.0-py3-none-any.whl:

Publisher: release.yml on vEnhance/django-discordo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

1.2.0 This release

2 files

1.1.0

2 files

1.0.0

2 files

0.3.1

2 files

0.3.0

2 files

0.2.0

2 files

0.1.0

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page