aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llcommon/llapr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/llcommon/llapr.cpp')
-rw-r--r--linden/indra/llcommon/llapr.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/linden/indra/llcommon/llapr.cpp b/linden/indra/llcommon/llapr.cpp
index 2a81e5e..770cd3f 100644
--- a/linden/indra/llcommon/llapr.cpp
+++ b/linden/indra/llcommon/llapr.cpp
@@ -292,7 +292,7 @@ bool ll_apr_file_remove(const LLString& filename, apr_pool_t* pool)
292 s = apr_file_remove(filename.c_str(), pool); 292 s = apr_file_remove(filename.c_str(), pool);
293 if (s != APR_SUCCESS) 293 if (s != APR_SUCCESS)
294 { 294 {
295 llwarns << "ll_apr_file_remove failed on file: " << filename << llendl; 295 lldebugs << "ll_apr_file_remove failed on file: " << filename << llendl;
296 ll_apr_warn_status(s); 296 ll_apr_warn_status(s);
297 return false; 297 return false;
298 } 298 }
@@ -306,7 +306,7 @@ bool ll_apr_file_rename(const LLString& filename, const LLString& newname, apr_p
306 s = apr_file_rename(filename.c_str(), newname.c_str(), pool); 306 s = apr_file_rename(filename.c_str(), newname.c_str(), pool);
307 if (s != APR_SUCCESS) 307 if (s != APR_SUCCESS)
308 { 308 {
309 llwarns << "ll_apr_file_rename failed on file: " << filename << llendl; 309 lldebugs << "ll_apr_file_rename failed on file: " << filename << llendl;
310 ll_apr_warn_status(s); 310 ll_apr_warn_status(s);
311 return false; 311 return false;
312 } 312 }
@@ -363,7 +363,7 @@ bool ll_apr_dir_make(const LLString& dirname, apr_pool_t* pool)
363 s = apr_dir_make(dirname.c_str(), APR_FPROT_OS_DEFAULT, pool); 363 s = apr_dir_make(dirname.c_str(), APR_FPROT_OS_DEFAULT, pool);
364 if (s != APR_SUCCESS) 364 if (s != APR_SUCCESS)
365 { 365 {
366 llwarns << "ll_apr_file_remove failed on file: " << dirname << llendl; 366 lldebugs << "ll_apr_dir_make failed on file: " << dirname << llendl;
367 ll_apr_warn_status(s); 367 ll_apr_warn_status(s);
368 return false; 368 return false;
369 } 369 }
@@ -377,7 +377,7 @@ bool ll_apr_dir_remove(const LLString& dirname, apr_pool_t* pool)
377 s = apr_file_remove(dirname.c_str(), pool); 377 s = apr_file_remove(dirname.c_str(), pool);
378 if (s != APR_SUCCESS) 378 if (s != APR_SUCCESS)
379 { 379 {
380 llwarns << "ll_apr_file_remove failed on file: " << dirname << llendl; 380 lldebugs << "ll_apr_dir_remove failed on file: " << dirname << llendl;
381 ll_apr_warn_status(s); 381 ll_apr_warn_status(s);
382 return false; 382 return false;
383 } 383 }