Remove a few less useful debug messages

These were level 5, so I'd bet nobody ever saw them
This commit is contained in:
Fabian Homborg 2020-01-19 13:54:00 +01:00
parent 5da4f7e7c5
commit b09ae82ecf
2 changed files with 0 additions and 3 deletions

View File

@ -21,7 +21,6 @@ owning_lock<std::vector<const wchar_t *>> 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;

View File

@ -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<env_var_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) {