Simple cloud storage for your Python logs

Give your logs the beautiful wrapper they deserve

GET STARTED Check how it looks like

Hassle-free Installation

No third-party packages. Only Python logging module.

Just paste the code on the left into your Python app and log whatever you need with ease.

import logging
from logging.handlers import HTTPHandler

logger = logging.getLogger(__name__)
https_handler = HTTPHandler(
    host='logger.host',
    url='/handler/' + API_TOKEN,
    method='POST',
    secure=True
)
logger.setLevel(logging.DEBUG)
logger.addHandler(http_handler)
logger.error('Hello Error!')

All logs will be accessible through your dashboard. You can search and filter them as you need.

If you haven’t worked with Python logging before, below we put a list of useful links about the module:

import logging
from logging.handlers import HTTPHandler

logger = logging.getLogger(__name__)
https_handler = HTTPHandler(
    host='logger.host',
    url='/handler/' + API_TOKEN,
    method='POST',
    secure=True
)
logger.setLevel(logging.DEBUG)
logger.addHandler(http_handler)
logger.error('Hello Error!')

Let us show what we offer

We have a bunch of cool features, some of them we have placed below

Handy Dashboard

All your records are available in a minimalistic and user-friendly dashboard.

Automated Backups

You don't have to worry about archiving records. We do this automatically.

Endless Free Tier

We believe that basic features should be free for everyone. And only additional functions are paid.

Record Filters

Collecting log data is only part of the task. We provide a convenient way to analyze your records.

Data Ownership

You own your data. It is accessible only by you and team members you decided to share access with.

Native Support

Don't garbage your project with third-party modules. Our project is using native Python logging.

Completely free until you need some extra stuff

Below you can find out what you can get for free and what we offer as additional services.

Basic
Pro
Search by Records
Automatic Archiving
Basic Authentication
Advanced Dashboard
Active Records (Millions)
1m
10m
Archived Records (Millions)
10m
50m
Retention*
7 DAYS
28 DAYS
Unlimited Team Members
Export from Archive

* Days to keep active records before archiving

Free/ Forever
$9.00/ Month

Pricing

FreeForever
$9.00Month
Extra Archive RECORDS

$0.10 / Million

Extra Active RECORDS

$1.00 / Million

Extra Retention Days

$3.00 / Day

Set up your first cloud-based loggger in a few clicks

Just few lines in code will improve your whole project

GET STARTED NOW