Skip to content

polymatx/logClass

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#PHP Logger

Description:

Logging type: user can choose to log messages in file or database or both.

User can set logging type to DB or File or FileAndDB to get desired logging.

Customization: User defined

  1. filename
  2. path location
  3. database credentials
and many other parameters.
Many setter functions have been written to set many private variables.
*set_location, set_type, set_level, set_db_credentails, set_file_name, set_concatenator, set_end_of_entry, set_retry_interval, set_retry_count*
"set" function is written to set any configuration variable. Refer to function’s signature to identify which parameter should be passed to set which parameter.

Omitting logs: functionality to omit logs, depending on their severity. You can set you global logging level through “set_level” function. Enumeration has been defined for logging level.

  • const Error = 4;
  • const Warning = 3;
  • const Debug = 2;
  • const Info = 1;

Value from above enumeration must be passed in “write” method. Refer to sample example(logging_tester.php). All messages passed with logging level greater than global logging level will be printed. You can set global logging level to high or low to include and exclude logs. You can define your own logging levels as much you want and set global logging level accordingly.

Retry mechanism: When script is going to write on the file, if file is used by another process or for some reason script was unable to write on the file, script has functionality to retry again after specified interval up to specified retry-counts.
Retry interval and retry count are by default 10, defined in class constructor. You can set according to your need with set_retry_interval, set_retry_count setter functions.

About

log class

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages