HttpRepl icon indicating copy to clipboard operation
HttpRepl copied to clipboard

Waiting on VS Code as editor causes console spew from VS Code that is irrelevant to HttpRepl

Open albertdc opened this issue 3 years ago • 1 comments

editor.command.default is set to vscode and editor.command.default.arguments is set to --wait. If I do a post from vscode Terminal, it shows this error while waiting for the .json file to close: [33184:1028/103530.347:ERROR:service_worker_storage.cc(1904)] Failed to delete the database: Database IO error

After putting in a valid JSON string and closing the file, I get no other error. The service_worker_storage error is a bit weird though: what database was it trying to delete and why was it trying to delete that database?

albertdc avatar Oct 28 '22 02:10 albertdc

I believe what's happening is that it is actually piping messages from VS Code back to HttpRepl and writing them out to the console while it waits for exit. HttpRepl itself doesn't do anything with databases, don't worry! I'll use this issue to track trying to remove some of that console spew if possible, as I agree it is confusing.

tlmii avatar Dec 01 '22 05:12 tlmii