Improve log formatting for file searches

This commit is contained in:
Chris Robinson 2019-08-07 15:56:38 -07:00
parent 0eb5e80f67
commit e22dc27218

View File

@ -516,7 +516,7 @@ static void DirectorySearch(const char *path, const char *ext, al::vector<std::s
str = path;
str += '\\';
str += wstr_to_utf8(fdata.cFileName);
TRACE("Got result %s\n", str.c_str());
TRACE(" got %s\n", str.c_str());
} while(FindNextFileW(hdl, &fdata));
FindClose(hdl);
@ -748,7 +748,7 @@ static void DirectorySearch(const char *path, const char *ext, al::vector<std::s
if(str.back() != '/')
str.push_back('/');
str += dirent->d_name;
TRACE("Got result %s\n", str.c_str());
TRACE(" got %s\n", str.c_str());
}
closedir(dir);