change section delimiters in log for OpenBSD
[?]
Oct 20, 2023, 10:53 PM
T45HTERYG2C2PJ4R7OK76ZXP75QVRMZY5YYPU3WPDIPNNFGEM72QCDependencies
- [2]
KKMFQDR4editing source code from within the app - [3]
CEDTFKFDdelete some dead code - [4]
ME7WBLF5bugfix: log filenames can have 2 formats - [5]
ICFNWHOLcreate a place for graphical log handlers
Change contents
- replacement in log_browser.lua at line 45
elseif line.data:match('\u{250c}') thenelseif line.data:match('%[ u250c') then - replacement in log_browser.lua at line 47
local section_name = line.data:match('\u{250c}%s*(.*)')local section_name = line.data:match('u250c%s*(.*)') - replacement in log_browser.lua at line 52
elseif line.data:match('\u{2518}') thenlocal section_name = line.data:match('\u{2518}%s*(.*)')elseif line.data:match('%] u2518') thenlocal section_name = line.data:match('] u2518%s*(.*)') - replacement in log.lua at line 17
log(stack_frame_index, '\u{250c} ' .. name)-- I'd like to use the unicode character \u{250c} here, but it doesn't work-- in OpenBSD.log(stack_frame_index, '[ u250c ' .. name) - replacement in log.lua at line 25
log(stack_frame_index, '\u{2518} ' .. name)-- I'd like to use the unicode character \u{2518} here, but it doesn't work-- in OpenBSD.log(stack_frame_index, '] u2518 ' .. name)