summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConlain Kelly <conlain.k@gmail.com>2018-05-31 09:20:24 -0400
committerConlain Kelly <conlain.k@gmail.com>2018-05-31 09:20:36 -0400
commit2cbb3a81592a776572c93d2e7085e9b915dccd9b (patch)
tree5e78bd468164d938bde638cdf353b2a4b28babbb
parentbe1ec79b64684e038429dc187563552ef8d32439 (diff)
downloadsdl_core-2cbb3a81592a776572c93d2e7085e9b915dccd9b.tar.gz
Remove extra debug output
-rw-r--r--src/components/utils/src/file_system.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/components/utils/src/file_system.cc b/src/components/utils/src/file_system.cc
index 8e18a83f26..92fc643577 100644
--- a/src/components/utils/src/file_system.cc
+++ b/src/components/utils/src/file_system.cc
@@ -121,8 +121,7 @@ bool file_system::CreateDirectoryRecursively(const std::string& path) {
LOG4CXX_WARN_WITH_ERRNO(logger_,
"Unable to create directory recursively: "
<< path << " reason: " << ec.message());
- std::cerr << "Unable to create directory recursively: " << path
- << " reason: " << ec.message() << std::endl;
+
return false;
}
// return true if we made something or if it already existed