================
@@ -35,10 +37,9 @@ using lldb_private::Pipe;
void TransportBase::SetUp() {
std::tie(to_client, to_server) = TestDAPTransport::createPair();
- std::error_code EC;
- log = std::make_unique<Log>("-", EC);
+ log = std::make_unique<Log>(llvm::outs(), log_mutex);
dap = std::make_unique<DAP>(
- /*log=*/log.get(),
+ /*log=*/*log.get(),
----------------
DrSergei wrote:
nit: we don't need `get` here
https://github.com/llvm/llvm-project/pull/170731
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits