aboutsummaryrefslogtreecommitdiffstats
path: root/alc
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2019-08-07 15:56:38 -0700
committerChris Robinson <[email protected]>2019-08-07 15:56:38 -0700
commite22dc272182a44d03452c9ef44198c8173053839 (patch)
tree4404d236bbc31d759b8287d92c46e86d03cd9d25 /alc
parent0eb5e80f676c1072e1bc2c125789660b6a2be09e (diff)
Improve log formatting for file searches
Diffstat (limited to 'alc')
-rw-r--r--alc/helpers.cpp4
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);