From b09ae82ecf6e84f087d28cce28bb7f360b6c7731 Mon Sep 17 00:00:00 2001 From: Fabian Homborg Date: Sun, 19 Jan 2020 13:54:00 +0100 Subject: [PATCH] Remove a few less useful debug messages These were level 5, so I'd bet nobody ever saw them --- src/intern.cpp | 1 - src/path.cpp | 2 -- 2 files changed, 3 deletions(-) diff --git a/src/intern.cpp b/src/intern.cpp index 53dc61214..07d1d5561 100644 --- a/src/intern.cpp +++ b/src/intern.cpp @@ -21,7 +21,6 @@ owning_lock> string_table; static const wchar_t *intern_with_dup(const wchar_t *in, bool dup) { if (!in) return nullptr; - debug(5, L"intern %ls", in); auto table = string_table.acquire(); const wchar_t *result; diff --git a/src/path.cpp b/src/path.cpp index a6271adaa..f4b778249 100644 --- a/src/path.cpp +++ b/src/path.cpp @@ -35,8 +35,6 @@ const wcstring_list_t dflt_pathsv({L"/bin", L"/usr/bin", PREFIX L"/bin"}); static bool path_get_path_core(const wcstring &cmd, wcstring *out_path, const maybe_t &bin_path_var) { - debug(5, L"path_get_path( '%ls' )", cmd.c_str()); - // If the command has a slash, it must be an absolute or relative path and thus we don't bother // looking for a matching command. if (cmd.find(L'/') != wcstring::npos) {