aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorAleric Inglewood2010-10-23 22:08:11 +0200
committerAleric Inglewood2010-10-23 22:08:11 +0200
commit14b06b36f896902df28b85369c7da0e75befa50c (patch)
treec71a23ec4f82f7ce4a602f479182923810da0413
parentIMP-661: WARNING: isFeatureAvailable: Feature RenderCubeMap not on feature list! (diff)
downloadmeta-impy-14b06b36f896902df28b85369c7da0e75befa50c.zip
meta-impy-14b06b36f896902df28b85369c7da0e75befa50c.tar.gz
meta-impy-14b06b36f896902df28b85369c7da0e75befa50c.tar.bz2
meta-impy-14b06b36f896902df28b85369c7da0e75befa50c.tar.xz
IMP-662: WARNING: LLVFS: Using index file /ramdisk/imprudence/cache/index.db2.x.606582153
These aren't warnings at all. They are printed when a LLVFS object was successfully created. Fixed by turning the warnings into INFO.
Diffstat (limited to '')
-rw-r--r--linden/doc/contributions.txt1
-rw-r--r--linden/indra/llvfs/llvfs.cpp5
2 files changed, 4 insertions, 2 deletions
diff --git a/linden/doc/contributions.txt b/linden/doc/contributions.txt
index 863a275..5ed1509 100644
--- a/linden/doc/contributions.txt
+++ b/linden/doc/contributions.txt
@@ -82,6 +82,7 @@ Aleric Inglewood
82 IMP-581 82 IMP-581
83 IMP-660 83 IMP-660
84 IMP-661 84 IMP-661
85 IMP-662
85Alissa Sabre 86Alissa Sabre
86 VWR-81 87 VWR-81
87 VWR-83 88 VWR-83
diff --git a/linden/indra/llvfs/llvfs.cpp b/linden/indra/llvfs/llvfs.cpp
index 7df2a81..9bf5b59 100644
--- a/linden/indra/llvfs/llvfs.cpp
+++ b/linden/indra/llvfs/llvfs.cpp
@@ -583,8 +583,9 @@ LLVFS::LLVFS(const std::string& index_filename, const std::string& data_filename
583 } 583 }
584 } 584 }
585 585
586 LL_WARNS("VFS") << "Using index file " << mIndexFilename << LL_ENDL; 586 // Success!
587 LL_WARNS("VFS") << "Using data file " << mDataFilename << LL_ENDL; 587 LL_INFOS("VFS") << "Using index file " << mIndexFilename << LL_ENDL;
588 LL_INFOS("VFS") << "Using data file " << mDataFilename << LL_ENDL;
588 589
589 mValid = VFSVALID_OK; 590 mValid = VFSVALID_OK;
590} 591}