Skip to content

Commit

Permalink
lsp: Remove debug print (#1319)
Browse files Browse the repository at this point in the history
I accidentally left in a debug print that puts us out of spec. This removes it
  • Loading branch information
V-FEXrt authored Jun 27, 2023
1 parent 59fa278 commit a3b74c9
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion tools/lsp-wake/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,6 @@ int main(int argc, const char **argv) {
std::ofstream log_file;
auto log_file_defer = wcl::make_defer([&log_file]() { log_file.close(); });
if (wake_lsp_log_path != nullptr) {
std::cerr << wake_lsp_log_path << std::endl;
log_file = std::ofstream(wake_lsp_log_path, std::ios::app);
wcl::log::subscribe(std::make_unique<wcl::log::FormatSubscriber>(log_file.rdbuf()));
}
Expand Down

0 comments on commit a3b74c9

Please sign in to comment.