Skip to main content

A logging package for Discord bots

Project description

BotLogging

BotLogging is a logging package for Discord bots. It allows bot developers to log to Discord channels along with the standard terminal console, providing an easy way to track events and errors.

pip install botlogging

Logging Levels

The logging interface is designed to simulate the standard Python logging levels: debug, info, warning, and error.

Debug / Info / Warning

The first three levels by default do not send to Discord. However, setting send=True provides this.

from discord.ext import commands
import botlogging

token = ""
bot = commands.Bot(token)
logger = botlogging.BotLogger(bot=bot, name="mybot")
logging_channel = 818657960038250216

@bot.command(name="echo")
async def echo(ctx, *, input: str):
    await logger.info("Executing echo command", send=True, channel=logging_channel)
    await ctx.send(content=input)

Error

For errors, the default is to send to Discord along with a traceback. Note, critical=True will add a mention to the message, so the guild owner will be notified directly.

@bot.command(name="run")
async def run(ctx):
    try:
        await some_function()
    except Exception as e:
        await logger.error(
            "Could not execute some_function!", 
            exception=e, 
            context=context, 
            channel=logging_channel, 
            critical=True
        )

    await ctx.send(content=input)

Console

If you just want to log to the standard logging console, you can still reference it with the bot logger. This is useful because it is not an async method and can be used in synchronous code.

def setup_bot_config(bot, logger):
    logger.console.debug("Loading bot config")
    # ...

Delayed logs

To avoid rate limiting issues, you can delay log events using a delayed logger.

from discord.ext import commands
import botlogging

logger = botlogging.DelayedLogger(bot=bot, name="mybot")

Custom embeds

You can override the embeds sent to Discord by passing in your own embeds.

# create a custom embed
embed = discord.Embed(description="Custom embed!")
embed.add_field(name="Some custom field", value="some custom value")

await logger.info("Executing echo command", send=True, channel=logging_channel, embed=embed)

Note: this still adds in base formatting to the embed such as color and title.

Project details


Download files

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

Source Distribution

botlogging-1.0.0.tar.gz (5.8 kB view details)

Uploaded Source

File details

Details for the file botlogging-1.0.0.tar.gz.

File metadata

  • Download URL: botlogging-1.0.0.tar.gz
  • Upload date:
  • Size: 5.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.2

File hashes

Hashes for botlogging-1.0.0.tar.gz
Algorithm Hash digest
SHA256 61c4a5bd377b3b520dcd86b9801721767657f3f8b0aa4035e52e00f3db0d0680
MD5 a3bda6a36ece0edb94ed7beacdbf4c26
BLAKE2b-256 0aa229120028bbe9a21618dc8fc4e9acb1b9ababad044cc34868dc4d6673a0e8

See more details on using hashes here.

Supported by

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