✘ error: β€œabc(def” is not a valid regular expression for property β€œ/invalid_props_log/search-table/bad_table_regex/pattern” reason: missing )  --> {test_dir}/bad-config/formats/invalid-properties/format.json:24  |  "pattern": "abc(def"   --> /invalid_props_log/search-table/bad_table_regex/pattern  | abc(def  |  ^ missing )  = help: Property Synopsis /invalid_props_log/search-table/bad_table_regex/pattern  Description The regular expression for this search table. ✘ error: β€œ^(?\d+: (?.*)$” is not a valid regular expression for property β€œ/bad_regex_log/regex/std/pattern” reason: missing )  --> {test_dir}/bad-config/formats/invalid-regex/format.json:6  |  "pattern": "^(?\\d+: (?.*)$"  --> /bad_regex_log/regex/std/pattern  | ^(?<timestamp>\d+: (?<body>.*)$  |  ^ missing )  = help: Property Synopsis /bad_regex_log/regex/std/pattern  Description The regular expression to match a log message and capture fields. ✘ error: β€œ(foo” is not a valid regular expression for property β€œ/bad_regex_log/level/error” reason: missing )  --> {test_dir}/bad-config/formats/invalid-regex/format.json:10  |  "error" : "(foo"   --> /bad_regex_log/level/error  | (foo  |  ^ missing )  = help: Property Synopsis /bad_regex_log/level/error  Description The regular expression used to match the log text for this level. For JSON logs with numeric levels, this should be the number for the corresponding level. ✘ error: β€œabc(” is not a valid regular expression for property β€œ/bad_regex_log/highlights/foobar/pattern” reason: missing )  --> {test_dir}/bad-config/formats/invalid-regex/format.json:22  |  "pattern": "abc("   --> /bad_regex_log/highlights/foobar/pattern  | abc(  |  ^ missing )  = help: Property Synopsis /bad_regex_log/highlights/foobar/pattern  Description A regular expression to highlight in logs of this format. ✘ error: β€œfoo” is not a valid value for option β€œ/bad_sample_log/value/pid/kind”  --> {test_dir}/bad-config/formats/invalid-sample/format.json:24  |  "kind": "foo"   = help: Property Synopsis /bad_sample_log/value/pid/kind  Description The type of data in the field Allowed Values string, integer, float, boolean, json, struct, quoted, xml ✘ error: 'bad' is not a supported log format $schema version  --> {test_dir}/bad-config/formats/invalid-schema/format.json:2  |  "$schema": "bad"   = note: expecting one of the following $schema values:  https://lnav.org/schemas/format-v1.schema.json  = help: Property Synopsis /$schema The URI of the schema for this file Description Specifies the type of this file ✘ error: invalid sample log message: "abc: foo" reason: unrecognized timestamp -- abc  --> {test_dir}/bad-config/formats/invalid-sample/format.json:30  = note: the following custom formats were tried: abc ^ β€œ%i” matched up to here  = help: If the timestamp format is not supported by default, you can add a custom format with the β€œtimestamp-format” property ✘ error: invalid sample log message: "1428634687123| debug hello" reason: β€œdebug” does not match the expected level of β€œinfo”  --> {test_dir}/bad-config/formats/invalid-sample/format.json:33 ✘ error: invalid pattern: β€œwith-level” reason: pattern does not match entire multiline message  --> {test_dir}/bad-config/formats/invalid-sample/format.json:37  = help: using β€œ.*” when capturing the body will match new-lines ✘ error: invalid sample log message: "1428634687123; foo bar" reason: sample does not match any patterns  --> {test_dir}/bad-config/formats/invalid-sample/format.json:41  = note: the following shows how each pattern matched this sample: 1428634687123; foo bar ^ bad-time matched up to here ^ semi matched up to here ^ std matched up to here ^ with-level matched up to here  = note: bad-time  = β€œ^(?\w+): (?\w+)$” semi  = β€œ^(?\d+); (?\w+)$” std  = β€œ^(?\d+): (?\w+) (?.*)$” with-level = β€œ^(?\d+)\| (?\w+) (?\w+)$” ✘ error: invalid value for property β€œ/invalid_props_log/timestamp-field” reason: β€œts” was not found in the pattern at /invalid_props_log/regex/std  --> {test_dir}/bad-config/formats/invalid-properties/format.json:4  = note: the following captures are available: body, pid, timestamp ✘ error: β€œnot a color” is not a valid color value for property β€œ/invalid_props_log/highlights/hl1/color” reason: Unknown color: 'not a color'. See https://jonasjacek.github.io/colors/ for a list of supported color names  --> {test_dir}/bad-config/formats/invalid-properties/format.json:18 ✘ error: β€œalso not a color” is not a valid color value for property β€œ/invalid_props_log/highlights/hl1/background-color” reason: Unknown color: 'also not a color'. See https://jonasjacek.github.io/colors/ for a list of supported color names  --> {test_dir}/bad-config/formats/invalid-properties/format.json:19 ✘ error: β€œno_regexes_log” is not a valid log format reason: no regexes specified  --> {test_dir}/bad-config/formats/no-regexes/format.json:4 ✘ error: β€œno_regexes_log” is not a valid log format reason: log message samples must be included in a format definition  --> {test_dir}/bad-config/formats/no-regexes/format.json:4 ✘ error: β€œno_sample_log” is not a valid log format reason: log message samples must be included in a format definition  --> {test_dir}/bad-config/formats/no-samples/format.json:4 ✘ error: failed to compile SQL statement reason: near "TALE": syntax error  --> {test_dir}/bad-config/formats/invalid-sql/init.sql:4  | -- comment test   | CREATE TALE  ✘ error: failed to execute SQL statement reason: missing )  --> {test_dir}/bad-config/formats/invalid-sql/init2.sql  | SELECT regexp_match('abc(', '123')   | FROM sqlite_master;