Skip to main content

A library to log into blob storage in Azure

Project description

PYBLOB LOGGING

Integrate this library on your project to log into both Terminal and Azure Blob Storage.

Implementation

Importing libraries

from PyblobLogging import PyblobLogging
from BlobDescription import BlobDescription
import os
import sys

Initializing Logger

ROOT_DIR = os.path.dirname(sys.modules['__main__'].__file__)

blob_description = BlobDescription(storage_connection_str, container_name, path_inside_container, ROOT_DIR)

# Example:
# blob_description = BlobDescription('DefaultEndpointsProtocol=https;AccountName=xx;AccountKey=xx/xxx/xx;EndpointSuffix=xx','my-container-name', 'directory1/directory2/', ROOT_DIR) 

logger = PyblobLogging.get_blob_logger('My Logger Name', blob_description)

Using functions

# To log errors
ex = Exception('Error')
logger.error('This is an error log :(', ex)

# To log another type of messages
logger.debug('This is a debug log :)')

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

AzurePyblobLogging-1.1.14.tar.gz (2.8 kB view hashes)

Uploaded Source

Built Distribution

AzurePyblobLogging-1.1.14-py3-none-any.whl (4.4 kB view hashes)

Uploaded Python 3

Supported by

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