Skip to content

Tyclonie/Tyclonie-Logger

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tyclonie Logger

Version: 2.0
GitHub
pip install TyclonieLogger

Documentation

Requirements

These should automatically install during the install of Tyclonie Logger
Colorama (0.4.6) - pip install colorama==0.4.6

Classes

TyclonieLogger()

  • Arguments: **options (Full list of options are listed after the code examples along side its default value)
  • The TyclonieLogger class is what contains the functions and procedures required to log using the program, the functions and methods will be called from an instance of the TyclonieLogger class

Functions

log()

  • Arguments: message
  • Returns: Void (N/A)
  • Logs the message that you pass into the console

warn()

  • Arguments: message
  • Returns: Void (N/A)
  • Logs the message that you pass into the console as a warning, made to alert the user of the program

error()

  • Arguments: message
  • Returns: Void (N/A)
  • Logs the message that you pass into the console as an error, made to alert the user of the program that someone bad has happened and it has been handled

get_datetime_formatted()

  • Arguments: None
  • Returns: String
  • Gets the current date and time formatted in the format provided when its TyclonieLogger instance was created. The use of this is for testing the format you provided.

Examples

Note: You may decide to use exact imports, using "from tyclonielogger import TyclonieLogger" instead of using "import tyclonielogger", simply then just replace everywhere that says "tyclonielogger.TyclonieLogger" with "TyclonieLogger", and it will have the same effect

Using inheritance (Object Orientated Programming):

Using sequencing:

Example output:

TyclonieLogger() Options

Notes

  • For selectable forground colours output show_foreground_colours on a TyclonieLogger instance
  • For selectable background colours output show_background_colours on a TyclonieLogger instance
  • For selectable styles output show_styles on a TyclonieLogger instance
  • They're layed out such that option=DEFAULT_VALUE
  • After outputtind the selectable styles, if its hard to see text you can highlight it in the terminal to make it easier to see

Options

datetime_format="%Y/%m/%d @ %H:%M:%S"
datetime_text_divider=" | "
datetime_background="YELLOW"
datetime_foreground="BLACK"
datetime_style="NORMAL"
log_identifier_foreground="GREEN"
log_identifier_background="NORMAL"
log_identifier_style="NORMAL"
log_message_foreground="NORMAL"
log_message_background="NORMAL"
log_message_style="NORMAL"
log_identifier_message_divider=": "
log_dividers_foreground="NORMAL"
log_dividers_background="NORMAL"
log_dividers_style="NORMAL"
warn_identifier_foreground="RED"
warn_identifier_background="NORMAL"
warn_identifier_style="BRIGHT"
warn_message_foreground="NORMAL"
warn_message_background="NORMAL"
warn_message_style="NORMAL"
warn_identifier_message_divider=": "
warn_dividers_foreground="NORMAL"
warn_dividers_background="NORMAL"
warn_dividers_style="NORMAL"
error_identifier_foreground="BLACK"
error_identifier_background="RED"
error_identifier_style="BRIGHT"
error_message_foreground="RED"
error_message_background="NORMAL"
error_message_style="NORMAL"
error_identifier_message_divider=": "
error_dividers_foreground="NORMAL"
error_dividers_background="NORMAL"
error_divider_style="NORMAL"

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages