Skip to main content

Easy Logger ----------- A python package for logging easily.

Project description

A python package for using logger easily.

Installation

TODO

Usage

from elogger import Logger

logger = Logger.get_stream_logger()
logger.info('logger')

API

class Logger(object):

    def init_config(self, level=logging.INFO):
        """Init logging baseConfig

        :param int level: logging level
        """
        pass

    def get_stream_logger(name):
        """Get logger which has add streamHandler. Output log message to stream.

        :param str name: logger name
        """
        pass

    def get_file_logger(name, filepath):
        """Get logger which has add fileHandler. Output log message to specify file.

        :param str name: logger name
        """
        pass

    def get_both_logger(name, filepath):
        """Get logger which has both add streamHandler and fileHandler.
        Output log message to stream and specify file.

        :param str name: logger name
        """
        pass

Better

If you feel anything wrong, feedbacks or pull requests are welcomed.

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

easy_logger-0.1.tar.gz (1.4 kB view hashes)

Uploaded Source

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