Note: This module is updating every week, so be sure to check the updates frequently!
logs.log(message='No response', path='\')
logs.warn(message='No response', path='\')
logs.error(message='No response', path='\')
logs.fatal(message='No response', code=1, path='\')
Use logs.log() to display and save the log to the .log file.
Example:
message="Just a basic log"
logfile='\log\'
logs.log(message, log)
There's also a warning log, that warns about something. Example:
message="A warning about something"
logfile='\log\'
logs.warn(message, log)
Same with the error log.
Also, theres a fatal error, that requires: Message, error code and path. Example:
message="Fatal"
logfile='\log\'
logs.fatal(message, code=1, logfile)
If you have more questions about usage, see the Issues page.
