Tim Stack
Tim Stack
If you could give me some more details on the format of the inputs and the expected outputs, I could get something implemented. As it is, I'm not sure what...
Yeah, there's funkiness with msys and some paths. I'm a little too tired of it at the moment to try to figure out a workaround.
> * Is it possible to skip formatters at all? Just show log lines as is (with optional ascii coloring), but use all benefits of lnav? If a file does...
> Is it possible to add a super-minimal formatter that just has one regex for the timestamp extraction and consider the end of line as the stop of the message?...
> * sometimes lnav permanently hangs (closing the terminal is the only fix) That sounds bad, can you give some details? What version are you running? If you pass `-d...
Hmm, those same commands are working as expected for me. Can you attach the full debug log? > However regarding the user table, the create command does not indicate the...
Yeah, I don't see anything unusual in the log either. Can you run the following to make sure the table is created in the `main` DB: ``` ;SELECT * FROM...
I think you're on the right track. I didn't remember the main database connection was being re-opened. I do think it needs to be reopened since this is happening in...
I've pushed a change to use `sqlite3_open_v2()` with the `SQLITE_OPEN_URI` flag. It looks like that is needed since `sqlite3_open()` will only interpret the filename as a URI if a compile-time...
> Regarding the tables created from ":create-logline-table" and ":create-search-table" Those are vtables, so they won't work in a `;.save`. I do agree that the search tables should be added to...