minor: make it clearer in the log where we're loading region config files and not the regions themselves

This commit is contained in:
Justin Clark-Casey (justincc)
2011-03-25 23:36:58 +00:00
parent 3a55d59b45
commit d8e1c380e6
2 changed files with 15 additions and 17 deletions

View File

@@ -90,7 +90,7 @@ namespace OpenSim.Framework.RegionLoader.Filesystem
RegionInfo regionInfo = new RegionInfo("REGION CONFIG #" + (i + 1), file, false, m_configSource, config.Name);
regionInfos.Add(regionInfo);
m_log.InfoFormat("[REGION LOADER FILE SYSTEM]: Loaded region {0}", regionInfo.RegionName);
m_log.InfoFormat("[REGION LOADER FILE SYSTEM]: Loaded config for region {0}", regionInfo.RegionName);
i++;
}
@@ -103,7 +103,7 @@ namespace OpenSim.Framework.RegionLoader.Filesystem
RegionInfo regionInfo = new RegionInfo("REGION CONFIG #" + (i + 1), file, false, m_configSource);
regionInfos.Add(regionInfo);
m_log.InfoFormat("[REGION LOADER FILE SYSTEM]: Loaded region {0}", regionInfo.RegionName);
m_log.InfoFormat("[REGION LOADER FILE SYSTEM]: Loaded config for region {0}", regionInfo.RegionName);
i++;
}