Skip to main content

A small logger for notion.so

Project description

Notion Logger

The NotionLogger package provides a custom logging handler that sends log entries to a specified Notion database. This tool is useful for centralizing logs from different applications and tracking errors, warnings, and other log messages in Notion.

Features

  • 📄 Log to Notion: Directly send log messages to a Notion database.
  • ⚙️ Custom Log Types: Support for various log types including INFO, DEBUG, WARNING, and ERROR.
  • 🌐 Global Exception Handling: Automatically logs uncaught exceptions to Notion.

Installation

pip install requests

Usage

Basic Setup

First, import the necessary modules and set up your logger:

import logging
from notion_logger import NotionLogger

# Replace with your own Notion page ID and secret token
PAGE_ID = "your_page_id"
SECRET_TOKEN = "your_secret_token"

notion_handler = NotionLogger(page_id=PAGE_ID, secret_token=SECRET_TOKEN)
logging.getLogger().addHandler(notion_handler)
logging.getLogger().setLevel(logging.DEBUG)

# Activate global exception handler
notion_handler.activate_global_handler()

Logging Messages

Now you can log messages as usual, and they will be sent to your Notion database:

logger = logging.getLogger(__name__)

logger.info("This is an informational message 📄")
logger.debug("This is a debug message 🐞")
logger.warning("This is a warning message ⚠️")
logger.error("This is an error message ❌")

Example

Here's a complete example including the setup and logging messages:

import logging
from notion_logger import NotionLogger

# Replace with your own Notion page ID and secret token
PAGE_ID = "your_page_id"
SECRET_TOKEN = "your_secret_token"

# Initialize the Notion logger
notion_handler = NotionLogger(page_id=PAGE_ID, secret_token=SECRET_TOKEN)
logging.getLogger().addHandler(notion_handler)
logging.getLogger().setLevel(logging.DEBUG)

# Activate global exception handler
notion_handler.activate_global_handler()

# Log some messages
logger = logging.getLogger(__name__)

logger.info("This is an informational message 📄")
logger.debug("This is a debug message 🐞")
logger.warning("This is a warning message ⚠️")
logger.error("This is an error message ❌")

# Example of an unhandled exception
def divide(a, b):
    return a / b

try:
    divide(1, 0)
except ZeroDivisionError:
    logger.exception("An exception occurred")

How It Works

Initialization

The NotionLogger class is initialized with a Notion page ID and a secret token. It sets up the necessary headers and creates a database in Notion to store the logs.

Logging

When a log message is emitted, the emit method formats the message and sends it to Notion using the log_to_notion method. Each log entry includes the file name, line number, log type, and the message content.

Exception Handling

The activate_global_handler method sets a global exception handler that catches uncaught exceptions and logs them to Notion.

Requirements

  • Python 3.6+
  • requests library

Contributing

Contributions are welcome! Please open an issue or submit a pull request on GitHub.

License

This project is licensed under the MIT License. See the LICENSE file for details.


Feel free to reach out with any questions or feedback! Happy logging 📋✨

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

notion_logger-0.0.5.tar.gz (15.0 kB view details)

Uploaded Source

Built Distribution

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

notion_logger-0.0.5-py3-none-any.whl (15.0 kB view details)

Uploaded Python 3

File details

Details for the file notion_logger-0.0.5.tar.gz.

File metadata

  • Download URL: notion_logger-0.0.5.tar.gz
  • Upload date:
  • Size: 15.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.3

File hashes

Hashes for notion_logger-0.0.5.tar.gz
Algorithm Hash digest
SHA256 aaa6c21e387bf3d5a79bc753a973f715c72b6ff36a105554127cf19120638283
MD5 5c89ab547d11c9c1369c0807a465ebe5
BLAKE2b-256 3c1636e84bea89e28043ed957d2958870596fd6aa4f55496748050c98472c87e

See more details on using hashes here.

File details

Details for the file notion_logger-0.0.5-py3-none-any.whl.

File metadata

  • Download URL: notion_logger-0.0.5-py3-none-any.whl
  • Upload date:
  • Size: 15.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.3

File hashes

Hashes for notion_logger-0.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 e426d52af6a8bda53edd5aa60aaf6844b7da5502b656a261d4dcc6bcc183524c
MD5 2dc8802762fec2c945b8ee4c8b82c282
BLAKE2b-256 be62f105b8a1ac0eaad1ecd93736a0c3856d6aa69b35a473f8447bac442d720b

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