Skip to main content

a simple log tool for python.

Reason this release was yanked:

wrong name

Project description

LogFly

a simple log tool for python.

How to

import

import logfly  

use

logfly.write_log('name', 'where', 'info', "message.")  

Description

name: (any str) logfile name, you can use diffrent string to create diffrent logfile.  
where: ('CLI', 'fileCLI', 'file') position where log appear.  
        fileCLI means log will appear in command line window and log file.  
        CLI means log will only appear in command line window.  
        file means log will only appear in logfile.  
info: (any str) custom log level, will upper and wrap with '[]'.  
message: (any str) log message.  

Example:

both file and CLI code

logfly.write_log('Doctor Who', 'fileCLI', 'info', "this is Doctor's log, in file and CLI.")  

in CLI

2021-07-29 20:39:07 [INFO] this is Doctor's log, in file and CLI.  

in file (Doctor Who-2021-07-29.log)

2021-07-29 20:39:07 [INFO] this is Doctor's log, in file and CLI.  

only in CLI code

logfly.write_log('Doctor Who', 'CLI', 'info', "this is Doctor's log, only in CLI.")  

in CLI

2021-07-29 20:39:07 [INFO] this is Doctor's log, only in CLI.  

in file

None

only in file code

logfly.write_log('Doctor Who', 'file', 'info', "this is Doctor's log, in file and CLI.")  

in CLI

None  

in file (Doctor Who-2021-07-29.log)

2021-07-29 20:40:03 [INFO] this is Doctor's log, only in file.  

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

LogFly-0.3-py3-none-any.whl (2.1 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