aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2014-03-06 19:12:16 +0000
committerJustin Clark-Casey (justincc)2014-03-06 19:12:16 +0000
commitddd38a3dea70845ede575ccece4c83c10602d3b5 (patch)
tree318d05f9461cc813fcace429d7ebab139ebb820c /OpenSim
parentrefactor: Simplify land object by using c# get/set auto-properties where appl... (diff)
downloadopensim-SC_OLD-ddd38a3dea70845ede575ccece4c83c10602d3b5.zip
opensim-SC_OLD-ddd38a3dea70845ede575ccece4c83c10602d3b5.tar.gz
opensim-SC_OLD-ddd38a3dea70845ede575ccece4c83c10602d3b5.tar.bz2
opensim-SC_OLD-ddd38a3dea70845ede575ccece4c83c10602d3b5.tar.xz
Add scene name to bad parcel add logging
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs b/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs
index 5421b2e..de40685 100644
--- a/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs
+++ b/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs
@@ -638,8 +638,9 @@ namespace OpenSim.Region.CoreModules.World.Land
638 if (lastRecordedLo.LandBitmap[x, y]) 638 if (lastRecordedLo.LandBitmap[x, y])
639 { 639 {
640 m_log.ErrorFormat( 640 m_log.ErrorFormat(
641 "{0}: Cannot add parcel \"{1}\", local ID {2} at tile {3},{4} because this is still occupied by parcel \"{5}\", local ID {6}.", 641 "{0}: Cannot add parcel \"{1}\", local ID {2} at tile {3},{4} because this is still occupied by parcel \"{5}\", local ID {6} in {7}",
642 LogHeader, new_land.LandData.Name, new_land.LandData.LocalID, x, y, lastRecordedLo.LandData.Name, lastRecordedLo.LandData.LocalID); 642 LogHeader, new_land.LandData.Name, new_land.LandData.LocalID, x, y,
643 lastRecordedLo.LandData.Name, lastRecordedLo.LandData.LocalID, m_scene.Name);
643 644
644 return null; 645 return null;
645 } 646 }