File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ LOG_READER_SPLIT_PATTERN = "\\n"
64
64
LOG_READER_MAX_READ_LINES = 1000
65
65
66
66
# You can exclude files with this value.
67
- LOG_READER_EXCLUDE_LINES = []
67
+ LOG_READER_EXCLUDE_FILES = []
68
68
```
69
69
70
70
<br />
Original file line number Diff line number Diff line change 39
39
LOG_READER_MAX_READ_LINES = 1000
40
40
41
41
# You can exclude files with this value.
42
- LOG_READER_EXCLUDE_LINES = []
42
+ LOG_READER_EXCLUDE_FILES = []
43
43
44
44
45
45
* Collect static if you are in production environment:
Original file line number Diff line number Diff line change 11
11
# The default value is '[(?i)[0-9]{4}-[0-9]{2}-[0-9]{2}\\s(?:[0-9]{2}:){2}[0-9]{2}.+?(?=[0-9]{4}-[0-9]{2}-[0-9]{2}\\s(?:[0-9]{2}:){2}[0-9]{2}|$)'
12
12
LOG_READER_REGEX_SPLIT_PATTERN = '[(?i)[0-9]{4}-[0-9]{2}-[0-9]{2}\\ s(?:[0-9]{2}:){2}[0-9]{2}.+?(?=[0-9]{4}-[0-9]{2}-[0-9]{2}\\ s(?:[0-9]{2}:){2}[0-9]{2}|$)'
13
13
LOG_READER_MAX_READ_LINES = getattr (settings , 'LOG_READER_MAX_READ_LINES' , 1000 )
14
- LOG_READER_EXCLUDE_LINES = getattr (settings , 'LOG_READER_EXCLUDE_LINES ' , [])
14
+ LOG_READER_EXCLUDE_FILES = getattr (settings , 'LOG_READER_EXCLUDE_FILES ' , [])
15
15
Original file line number Diff line number Diff line change 9
9
10
10
setup (
11
11
name = 'django-log-reader' ,
12
- version = '1.1.1 ' ,
12
+ version = '1.1.2 ' ,
13
13
zip_safe = False ,
14
14
packages = find_packages (),
15
15
include_package_data = True ,
You can’t perform that action at this time.
0 commit comments