浏览代码

Socket logging with project specific adaptions

master
Dirk Alders 2 个月前
父节点
当前提交
6b110b61b8
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2
    2
      piki/settings.py

+ 2
- 2
piki/settings.py 查看文件

@@ -182,7 +182,7 @@ if SECRET_KEY is None:
182 182
 
183 183
 # Logging Configuration
184 184
 #
185
-ROOT_LOGGER_NAME = 'apps'
185
+ROOT_LOGGER_NAME = os.path.basename(os.path.dirname(__file__))
186 186
 default_handler = ['socket'] if DEBUG else ['console']
187 187
 
188 188
 
@@ -216,7 +216,7 @@ File "%(pathname)s", line %(lineno)d, in %(funcName)s
216 216
         },
217 217
         'socket': {
218 218
             'level': 'DEBUG',
219
-            'class': 'piki.settings.DjangoSocketHandler',
219
+            'class': f'{ROOT_LOGGER_NAME}.settings.DjangoSocketHandler',
220 220
             'host': '127.0.0.1',
221 221
             'port': 19996,
222 222
         },

正在加载...
取消
保存