]> Dogcows Code - chaz/yoink/blobdiff - src/moof/resource.cc
testing improved runloop scheduling
[chaz/yoink] / src / moof / resource.cc
index 3cf901b06473ae730fccd87d556a05d973460fa6..35cd663ded7decff86f96321916b8ab5cef71f5b 100644 (file)
@@ -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;
        }
 
This page took 0.016375 seconds and 4 git commands to generate.