diff options
author | grid | 2009-12-10 22:09:16 -0500 |
---|---|---|
committer | grid | 2009-12-10 22:09:16 -0500 |
commit | 5ffd59e7b870acb74ad7c6be4a1f49b62b013f21 (patch) | |
tree | 445db46cedbfa673878c172d549ba7550f2aeae0 /OpenSim/Data/MySQL/MySQLLegacyRegionData.cs | |
parent | Fix version number (diff) | |
download | opensim-SC_OLD-5ffd59e7b870acb74ad7c6be4a1f49b62b013f21.zip opensim-SC_OLD-5ffd59e7b870acb74ad7c6be4a1f49b62b013f21.tar.gz opensim-SC_OLD-5ffd59e7b870acb74ad7c6be4a1f49b62b013f21.tar.bz2 opensim-SC_OLD-5ffd59e7b870acb74ad7c6be4a1f49b62b013f21.tar.xz |
Kill a NRE caused by an error message trying to print unavailable data
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/MySQL/MySQLLegacyRegionData.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Data/MySQL/MySQLLegacyRegionData.cs b/OpenSim/Data/MySQL/MySQLLegacyRegionData.cs index e2a5406..17977f1 100644 --- a/OpenSim/Data/MySQL/MySQLLegacyRegionData.cs +++ b/OpenSim/Data/MySQL/MySQLLegacyRegionData.cs | |||
@@ -480,8 +480,8 @@ namespace OpenSim.Data.MySQL | |||
480 | else | 480 | else |
481 | { | 481 | { |
482 | m_log.WarnFormat( | 482 | m_log.WarnFormat( |
483 | "[REGION DB]: Database contains an orphan child prim {0} {1} at {2} in region {3} pointing to missing parent {4}. This prim will not be loaded.", | 483 | "[REGION DB]: Database contains an orphan child prim {0} {1} in region {3} pointing to missing parent {4}. This prim will not be loaded.", |
484 | prim.Name, prim.UUID, prim.AbsolutePosition, regionID, prim.ParentUUID); | 484 | prim.Name, prim.UUID, regionID, prim.ParentUUID); |
485 | } | 485 | } |
486 | } | 486 | } |
487 | } | 487 | } |