Skip to content
This repository has been archived by the owner on Jul 7, 2022. It is now read-only.

hiikion/logi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

83 Commits
 
 
 
 
 
 
 
 

Repository files navigation

logi v1.3.4

instolation

the lib works on python 3x versions

pip install logi

examples

import

import logi
log = logger(path='C:/file path', timestamp=True, dbg=True)

info log

log.info('info log')

final code

from logi import logi
log = logger(path='C:/file path', timestamp=True, dbg=True)
log.info('info log')
# output: 15:54:11 | info | info log

log example

with timestamp

15:54:11 | info | info log
15:54:58 | Warning | warning log
15:55:08 | Error | Error log
16:05:14 | hardware | custom log
16.06.14 | Debug | debug log

without timestamp

| info | info log
| Warning | warning log
| Error | Error log
| hardware | custom log
| Debug | debug log

links

pypi | docs