diff options
author | Justin Clark-Casey (justincc) | 2011-03-25 23:36:58 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-03-25 23:36:58 +0000 |
commit | d8e1c380e67512e0476b2a7b7441ae3acbb4606f (patch) | |
tree | 6532aeb09a6b08fc3f5ab39ac0262b633b3bdfee /OpenSim/Framework | |
parent | in region web loader, print out url that config is being loaded from (this wa... (diff) | |
download | opensim-SC_OLD-d8e1c380e67512e0476b2a7b7441ae3acbb4606f.zip opensim-SC_OLD-d8e1c380e67512e0476b2a7b7441ae3acbb4606f.tar.gz opensim-SC_OLD-d8e1c380e67512e0476b2a7b7441ae3acbb4606f.tar.bz2 opensim-SC_OLD-d8e1c380e67512e0476b2a7b7441ae3acbb4606f.tar.xz |
minor: make it clearer in the log where we're loading region config files and not the regions themselves
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/RegionLoader/Filesystem/RegionLoaderFileSystem.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/RegionLoader/Filesystem/RegionLoaderFileSystem.cs b/OpenSim/Framework/RegionLoader/Filesystem/RegionLoaderFileSystem.cs index 7cbd5ed..0aae4ff 100644 --- a/OpenSim/Framework/RegionLoader/Filesystem/RegionLoaderFileSystem.cs +++ b/OpenSim/Framework/RegionLoader/Filesystem/RegionLoaderFileSystem.cs | |||
@@ -90,7 +90,7 @@ namespace OpenSim.Framework.RegionLoader.Filesystem | |||
90 | RegionInfo regionInfo = new RegionInfo("REGION CONFIG #" + (i + 1), file, false, m_configSource, config.Name); | 90 | RegionInfo regionInfo = new RegionInfo("REGION CONFIG #" + (i + 1), file, false, m_configSource, config.Name); |
91 | regionInfos.Add(regionInfo); | 91 | regionInfos.Add(regionInfo); |
92 | 92 | ||
93 | m_log.InfoFormat("[REGION LOADER FILE SYSTEM]: Loaded region {0}", regionInfo.RegionName); | 93 | m_log.InfoFormat("[REGION LOADER FILE SYSTEM]: Loaded config for region {0}", regionInfo.RegionName); |
94 | 94 | ||
95 | i++; | 95 | i++; |
96 | } | 96 | } |
@@ -103,7 +103,7 @@ namespace OpenSim.Framework.RegionLoader.Filesystem | |||
103 | RegionInfo regionInfo = new RegionInfo("REGION CONFIG #" + (i + 1), file, false, m_configSource); | 103 | RegionInfo regionInfo = new RegionInfo("REGION CONFIG #" + (i + 1), file, false, m_configSource); |
104 | regionInfos.Add(regionInfo); | 104 | regionInfos.Add(regionInfo); |
105 | 105 | ||
106 | m_log.InfoFormat("[REGION LOADER FILE SYSTEM]: Loaded region {0}", regionInfo.RegionName); | 106 | m_log.InfoFormat("[REGION LOADER FILE SYSTEM]: Loaded config for region {0}", regionInfo.RegionName); |
107 | 107 | ||
108 | i++; | 108 | i++; |
109 | } | 109 | } |