Disccord Logger is a custom message logger to Discord for Python 3.
Project description
Python Discord Logger
A custom message logger to Discord for Python 3.
Install
Install via pip: pip install discord-logger
Basic Usage
from discord_logger import DiscordLogger
options = {
"application_name": "My Server",
"service_name": "My API",
"service_icon_url": "your icon url",
"service_environment": "Production",
"default_level": "info",
}
logger = DiscordLogger(webhook_url="your discord webhook url", **options)
logger.construct(title="Health Check", description="All services are running normally!")
response = logger.send()
Configure various options
Examples
Set Service Name, Icon and Environment for easy identification
You can configure the log message with service name, icon and environment for easy identification. The Host
field which is the hostname of the server is automatically added for every message.
from discord_logger import DiscordLogger
webhook_url = "your discord webhook url"
options = {
"application_name": "My Server",
"service_name": "Backend API",
"service_icon_url": "your icon url",
"service_environment": "Production",
"default_level": "info",
}
logger = DiscordLogger(webhook_url=webhook_url, **options)
logger.construct(
title="Health Check",
description="Issue in Auth API!",
error="Traceback (most recent call last):\n ValueError: Database connect accepts only string as a parameter!",
)
response = logger.send()
Send messages with different log-levels
The log-level indicates the importance of the message. It changes the color of the discord message in particular. Currently supported levels are,
error
warn
info
verbose
debug
success
The log-level can be set during construction of the message like through the parameter level
.
If the parameter isn't provided, it'll be set to the one given in default_level
. Any invalid input would be ignored and the log-level would be automatically be set to default
.
from discord_logger import DiscordLogger
options = {
"application_name": "My Server",
"service_name": "My API",
"service_icon_url": "your icon url",
"service_environment": "Production",
"default_level": "info",
}
logger = DiscordLogger(webhook_url=webhook_url, **options)
logger.construct(
title="Celery Task Manager",
description="Successfully completed training job for model v1.3.3!",
level="success",
)
response = logger.send()
- Send complete error traceback
The error
field can contain any error message. It will be automatically be formatted in the final message. For example, you can send a complete traceback of an error message to debug faster!
import traceback
from discord_logger import DiscordLogger
def get_traceback(e):
tb = (
"Traceback (most recent call last):\n"
+ "".join(traceback.format_list(traceback.extract_tb(e.__traceback__)))
+ type(e).__name__
+ ": "
+ str(e)
)
return tb
webhook_url = "your discord webhook url"
options = {
"application_name": "My Server",
"service_name": "Backend API",
"service_icon_url": "your icon url",
"service_environment": "Production",
"default_level": "info",
}
err = KeyError("`email` field cannot be None")
logger = DiscordLogger(webhook_url=webhook_url, **options)
logger.construct(
title="Runtime Exception", description=err.__str__(), error=get_traceback(err),
)
response = logger.send()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file discord-logger-1.0.1.tar.gz
.
File metadata
- Download URL: discord-logger-1.0.1.tar.gz
- Upload date:
- Size: 275.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 94dad949d4f626bfa7b15ae56c3499d00f0d1243501bfd2d7343d5e57a6fbeae |
|
MD5 | 80265e743be5ab4eef9c30027e082898 |
|
BLAKE2b-256 | 408194cde63b066b0caa71052b73caa083dd675b425a3f6549ef7a2562becc31 |
File details
Details for the file discord_logger-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: discord_logger-1.0.1-py3-none-any.whl
- Upload date:
- Size: 6.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b9dc1f22b82188b42d7cde4ab7a91db78805b4f1c49400556dd12befc2bb1ae2 |
|
MD5 | 93341b154795940d51d9e5450b988e1b |
|
BLAKE2b-256 | 5fa481ed1f0a199e32fc2eca95436a7b9ab5aef86e41ade5421f2192225a4f3c |