We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cea34bc commit d2eb224Copy full SHA for d2eb224
mysite/settings.py
@@ -126,4 +126,18 @@
126
127
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
128
129
-OPENAI_API_KEY = os.environ.get('OPENAI_API_KEY')
+OPENAI_API_KEY = os.environ.get('OPENAI_API_KEY')
130
+
131
+LOGGING = {
132
+ "version": 1,
133
+ "disable_existing_loggers": False,
134
+ "handlers": {
135
+ "console": {
136
+ "class": "logging.StreamHandler",
137
+ },
138
139
+ "root": {
140
+ "handlers": ["console"],
141
+ "level": "DEBUG",
142
143
+}
0 commit comments