From 16e43a52de2edd13355574036a238bbd978f2323 Mon Sep 17 00:00:00 2001 From: Matthias Melcher Date: Sun, 9 Aug 2026 18:35:38 +0200 Subject: [PATCH] Fluid: remove debug printf's --- fluid/Fluid.cxx | 3 --- 1 file changed, 3 deletions(-) diff --git a/fluid/Fluid.cxx b/fluid/Fluid.cxx index 058a73e55..1f34927de 100644 --- a/fluid/Fluid.cxx +++ b/fluid/Fluid.cxx @@ -721,9 +721,6 @@ int Application::write_code_files(bool dont_show_completion_dialog) std::string code_filename = proj.codefile_path() + proj.codefile_name(); std::string header_filename = proj.headerfile_path() + proj.headerfile_name(); - printf("LaunchDir: %s\n", Fluid.launch_path().c_str()); - printf("Writing code to\n`%s`\nand\n`%s`\n", code_filename.c_str(), header_filename.c_str()); - // -- write the code and header files if (!batch_mode) proj.enter_project_dir(); int x = f.write_code(code_filename, header_filename);