From 14b06b36f896902df28b85369c7da0e75befa50c Mon Sep 17 00:00:00 2001 From: Aleric Inglewood Date: Sat, 23 Oct 2010 22:08:11 +0200 Subject: 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. --- linden/doc/contributions.txt | 1 + linden/indra/llvfs/llvfs.cpp | 5 +++-- 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 IMP-581 IMP-660 IMP-661 + IMP-662 Alissa Sabre VWR-81 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 } } - LL_WARNS("VFS") << "Using index file " << mIndexFilename << LL_ENDL; - LL_WARNS("VFS") << "Using data file " << mDataFilename << LL_ENDL; + // Success! + LL_INFOS("VFS") << "Using index file " << mIndexFilename << LL_ENDL; + LL_INFOS("VFS") << "Using data file " << mDataFilename << LL_ENDL; mValid = VFSVALID_OK; } -- cgit v1.1