diff --git a/docs/configuration/logging.md b/docs/configuration/logging.md deleted file mode 100644 index e6a5d75cf..000000000 --- a/docs/configuration/logging.md +++ /dev/null @@ -1,11 +0,0 @@ -# Logging Configuration - -### Available Loggers - -| Name | Function | -|---------------------------------|--------------------------------------------------------| -| `netbox.auth.*` | Authentication events | -| `netbox.api.views.*` | Views which handle business logic for the REST API | -| `netbox.reports.*` | Reports (`module.name`) | -| `netbox.scripts.*` | Custom scripts (`module.name`) | -| `netbox.views.*` | Views which handle business logic for the web UI | diff --git a/docs/configuration/optional-settings.md b/docs/configuration/optional-settings.md index cbe01728c..b7ecbe94d 100644 --- a/docs/configuration/optional-settings.md +++ b/docs/configuration/optional-settings.md @@ -183,6 +183,14 @@ LOGGING = { } ``` +### Available Loggers + +* `netbox.auth.*` - Authentication events +* `netbox.api.views.*` - Views which handle business logic for the REST API +* `netbox.reports.*` - Report execution (`module.name`) +* `netbox.scripts.*` - Custom script execution (`module.name`) +* `netbox.views.*` - Views which handle business logic for the web UI + --- ## LOGIN_REQUIRED diff --git a/docs/release-notes/version-2.8.md b/docs/release-notes/version-2.8.md index 3088bb356..8dd4d2672 100644 --- a/docs/release-notes/version-2.8.md +++ b/docs/release-notes/version-2.8.md @@ -1,5 +1,9 @@ # v2.8.0 (FUTURE) +## Enhancements + +* [#4195](https://github.com/netbox-community/netbox/issues/4195) - Enabled application logging (see [logging configuration](../configuration/optional-settings.md#logging)) + ## API Changes * dcim.Rack: The `/api/dcim/racks//units/` endpoint has been replaced with `/api/dcim/racks//elevation/`. diff --git a/mkdocs.yml b/mkdocs.yml index 4ba91dfe5..33a6850aa 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -2,7 +2,7 @@ site_name: NetBox theme: readthedocs repo_url: https://github.com/netbox-community/netbox -pages: +nav: - Introduction: 'index.md' - Installation: - Installing NetBox: 'installation/index.md' @@ -58,6 +58,7 @@ pages: - Release Checklist: 'development/release-checklist.md' - Squashing Migrations: 'development/squashing-migrations.md' - Release Notes: + - Version 2.8: 'release-notes/version-2.8.md' - Version 2.7: 'release-notes/version-2.7.md' - Version 2.6: 'release-notes/version-2.6.md' - Version 2.5: 'release-notes/version-2.5.md'