diff --git a/readme.md b/readme.md index 4ca3aed9606b194b7564ace1348b4e265aef6098..cea62a17d644a8ab795cb25b876c1ee73592c793 100644 --- a/readme.md +++ b/readme.md @@ -6,3 +6,12 @@ Brandon Rodriguez ## Description An example of using Python's built in logging functionality. + +### Logging.py +The standard "logging.py" file should be fine to use in most instances. For some applications, such as Django projects, +logging settings dict may need to be extended or further customized. + +### Extended_logging.py +The "extended_logging.py" has an example of creating custom log levels. However, this is usually uneccesary, and should +generally be avoided unless Python's default logging levels are insufficient. Otherwise, this file is identical to +"logging.py".