Abhimanyu Saharan e43b5e41f1
Added testing framework (#121)
* added api test case for access list

* initial testing framework
2023-01-25 20:01:05 -05:00

12 lines
416 B
Python

# Remove first comment(#) on each line to implement this working logging example.
# Add LOGLEVEL environment variable to netbox if you use this example & want a different log level.
from os import environ
# Set LOGLEVEL in netbox.env or docker-compose.overide.yml to override a logging level of INFO.
LOGLEVEL = environ.get("LOGLEVEL", "INFO")
LOGGING = {
"version": 1,
"disable_existing_loggers": True,
}