X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2Fmoof%2Fresource.cc;h=35cd663ded7decff86f96321916b8ab5cef71f5b;hp=3cf901b06473ae730fccd87d556a05d973460fa6;hb=e9a16d767785b1a903a4466ff26265a5f7dae9e5;hpb=6f1b787a10d8ab1a3117a4b8c004dd2d90599608 diff --git a/src/moof/resource.cc b/src/moof/resource.cc index 3cf901b..35cd663 100644 --- a/src/moof/resource.cc +++ b/src/moof/resource.cc @@ -63,12 +63,12 @@ std::string resource::find_file(const std::string& name) // try it with the prefix first path = stlplus::filespec_to_path(*it, prefix); path = stlplus::filespec_to_path(path, name); - log_info("looking for", name, "at", path); + log_debug("looking for", name, "at", path); if (stlplus::file_exists(path)) return path; } path = stlplus::filespec_to_path(*it, name); - log_info("looking for", name, "at", path); + log_debug("looking for", name, "at", path); if (stlplus::file_exists(path)) return path; }