If you are using lldb/tools/lldb-dap and you try to enable logging to a file using something like:
lldb> log enable -f /tmp/my_log.txt llvm api
The file is never created and logging is not configured. Instead the logs are sent over the DAP as Console messages which may overwhelm the DAP with a large amount of logging, see
|
g_dap.SendOutput(OutputType::Console, llvm::StringRef{buf}); |