1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Documentation and changelog for #4195

This commit is contained in:
Jeremy Stretch
2020-03-04 14:33:55 -05:00
parent 9df2769383
commit 7454efe648
4 changed files with 14 additions and 12 deletions

View File

@ -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 |

View File

@ -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

View File

@ -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/<pk>/units/` endpoint has been replaced with `/api/dcim/racks/<pk>/elevation/`.