From 40e57f3262883c5863a6c26d42d5c13dbc1b373f Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Fri, 21 Mar 2025 22:31:36 -0500 Subject: [PATCH] remove debug logging --- repertory/repertory/src/ui/handlers.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/repertory/repertory/src/ui/handlers.cpp b/repertory/repertory/src/ui/handlers.cpp index ad5bc670..54445cd1 100644 --- a/repertory/repertory/src/ui/handlers.cpp +++ b/repertory/repertory/src/ui/handlers.cpp @@ -572,7 +572,6 @@ auto handlers::launch_process(provider_type prov, std::string_view name, std::vector exec_args; exec_args.reserve(args.size() + 1U); for (const auto &arg : args) { - fmt::println("{}", arg); exec_args.push_back(arg.c_str()); } exec_args.push_back(nullptr);