summarylogtreecommitdiffstats
path: root/0020-logs.patch
blob: 3ea9723a62e344f10829a0577b8d004e9708e227 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
diff -rNc lxdui-2.1.3-orig/conf/log.conf lxdui-2.1.3/conf/log.conf
*** lxdui-2.1.3-orig/conf/log.conf	2020-05-08 20:31:30.738863778 +0200
--- lxdui-2.1.3/conf/log.conf	2020-05-08 20:30:45.417245983 +0200
***************
*** 19,28 ****
        "stream": "ext://sys.stdout"
      },
      "rollingFileAppender": {
!       "class": "logging.FileHandler",
        "level": "DEBUG",
!       "formatter": "default",
!       "filename": "/var/log/lxdui/lxdui.log"
      },
      "file": {
        "class": "logging.FileHandler",
--- 19,31 ----
        "stream": "ext://sys.stdout"
      },
      "rollingFileAppender": {
!       "class": "logging.handlers.RotatingFileHandler",
        "level": "DEBUG",
!       "formatter": "expanded",
!       "filename": "/var/log/lxdui/lxdui.log",
!       "encoding": "utf-8",
!       "backupCount": 10,
!       "maxBytes": 20000000
      },
      "file": {
        "class": "logging.FileHandler",
***************
*** 37,43 ****
    "root": {
      "level": "DEBUG",
      "handlers": [
!       "file"
      ]
    },
    "werkzeug":{
--- 40,46 ----
    "root": {
      "level": "DEBUG",
      "handlers": [
!       "rollingFileAppender"
      ]
    },
    "werkzeug":{