diff options
author | Oz Linden <oz@lindenlab.com> | 2011-05-17 19:29:45 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2011-05-17 19:29:45 -0400 |
commit | 644cbc44871992a95bcd5a6854dfc2a4d56a7b62 (patch) | |
tree | aa3d376ffef11ccf21498d5781d8c84ec141ce9e /indra/llvfs | |
parent | 4297b530d3f174bfeeb27c63d4ad3ef5192e755e (diff) | |
parent | 9075e1104fd8238991f42b90e51b77d3497db02a (diff) |
merge notifications.xml fix
Diffstat (limited to 'indra/llvfs')
-rw-r--r-- | indra/llvfs/lldiriterator.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llvfs/lldiriterator.cpp b/indra/llvfs/lldiriterator.cpp index 5536ed8f69..041436ed92 100644 --- a/indra/llvfs/lldiriterator.cpp +++ b/indra/llvfs/lldiriterator.cpp @@ -55,7 +55,7 @@ LLDirIterator::Impl::Impl(const std::string &dirname, const std::string &mask) // Check if path exists. if (!fs::exists(dir_path)) { - llerrs << "Invalid path: \"" << dir_path.string() << "\"" << llendl; + llwarns << "Invalid path: \"" << dir_path.string() << "\"" << llendl; return; } @@ -100,7 +100,7 @@ bool LLDirIterator::Impl::next(std::string &fname) if (!mIsValid) { - llerrs << "The iterator is not correctly initialized." << llendl; + llwarns << "The iterator is not correctly initialized." << llendl; return false; } |