diff --git a/documents/references.md b/documents/references.md index b2fa18f40e0262724e4ca73ad7b9b9c7b9948d01..8a724379a6b3c93d1ee1c1dc39b51b1523fa488d 100644 --- a/documents/references.md +++ b/documents/references.md @@ -7,12 +7,27 @@ Various references used in project. ## References -### Python Logging Docs +### General Logging +#### Python Logging Docs <https://docs.python.org/3.8/library/logging.html> -### Django Logging +#### Django Logging (Pretty thorough docs of logging "settings dictionaries" in Python) <https://docs.djangoproject.com/en/dev/topics/logging/> -### Adding a New Logging Level +#### Adding a New Logging Level <https://stackoverflow.com/a/35804945> + +#### Adding Logging Filters +<https://stackoverflow.com/a/53257669> + +### Attaining Consistent Import Handling, Including within Submodules +#### Referencing Module Variables in Function +<https://stackoverflow.com/a/35904211> + +#### Git Submodule Path Normalization +<https://stackoverflow.com/a/24654281> +<https://stackoverflow.com/a/29747054> + +#### Getting Current Path +<https://stackoverflow.com/a/3430395>