diff options
author | Chris Robinson <[email protected]> | 2019-08-07 15:56:38 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-08-07 15:56:38 -0700 |
commit | e22dc272182a44d03452c9ef44198c8173053839 (patch) | |
tree | 4404d236bbc31d759b8287d92c46e86d03cd9d25 /alc | |
parent | 0eb5e80f676c1072e1bc2c125789660b6a2be09e (diff) |
Improve log formatting for file searches
Diffstat (limited to 'alc')
-rw-r--r-- | alc/helpers.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alc/helpers.cpp b/alc/helpers.cpp index 2174de05..d1401c3c 100644 --- a/alc/helpers.cpp +++ b/alc/helpers.cpp @@ -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); |