Commit fc976fe9 authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Add logging configuration

parent 5a47c7e6
Loading
Loading
Loading
Loading
+14 −0
Original line number Diff line number Diff line
@@ -101,3 +101,17 @@ TEMPLATES = [
		},
	},
]


# Logging
LOGGING = {
	"version": 1,
	"disable_existing_loggers": False,
	"handlers": {
		"console": {"class": "logging.StreamHandler"},
	},
	"root": {
		"handlers": ["console"],
		"level": "INFO",
	},
}