yet another bugfix in log parsing
[?]
Sep 18, 2022, 6:27 AM
N7VXEGLGP4T4BQXWBTTSWKA4BUM72DV4QVNFSETCJIF2QIG4BPHACDependencies
- [2]
6DYSB5DYbugfix: perform matches in the right order - [3]
ME7WBLF5bugfix: log filenames can have 2 formats - [4]
KKMFQDR4editing source code from within the app
Change contents
- replacement in log_browser.lua at line 30
line.filename, line.line_number, line.data = line.data:match('%[string "([^:]*)"%]:([^:]*):%s*(.*)')local restline.filename, line.line_number, rest = line.data:match('%[string "([^:]*)"%]:([^:]*):%s*(.*)') - replacement in log_browser.lua at line 33
line.filename, line.line_number, line.data = line.data:match('([^:]*):([^:]*):%s*(.*)')line.filename, line.line_number, rest = line.data:match('([^:]*):([^:]*):%s*(.*)')endif rest thenline.data = rest