diff options
author | Justin Clark-Casey (justincc) | 2012-11-23 05:43:51 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-11-23 05:44:31 +0000 |
commit | cda531bc3ce5e4a73eca33d6284197bbd59c9252 (patch) | |
tree | 1fbbe3bce32af4606cec9615a4461261dfa121b8 /OpenSim | |
parent | Make "show threads" and "thread abort" console commands available on all servers (diff) | |
download | opensim-SC_OLD-cda531bc3ce5e4a73eca33d6284197bbd59c9252.zip opensim-SC_OLD-cda531bc3ce5e4a73eca33d6284197bbd59c9252.tar.gz opensim-SC_OLD-cda531bc3ce5e4a73eca33d6284197bbd59c9252.tar.bz2 opensim-SC_OLD-cda531bc3ce5e4a73eca33d6284197bbd59c9252.tar.xz |
minor: Add some currently commented out debug log lines for investigating issues resolving group IDs for land parcels on OAR loading where groups do not exist
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/CoreModules/World/Archiver/ArchiveReadRequest.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/World/Archiver/ArchiveReadRequest.cs b/OpenSim/Region/CoreModules/World/Archiver/ArchiveReadRequest.cs index ea806ec..60bbf9b 100644 --- a/OpenSim/Region/CoreModules/World/Archiver/ArchiveReadRequest.cs +++ b/OpenSim/Region/CoreModules/World/Archiver/ArchiveReadRequest.cs | |||
@@ -557,9 +557,14 @@ namespace OpenSim.Region.CoreModules.World.Archiver | |||
557 | 557 | ||
558 | if (!ResolveGroupUuid(parcel.GroupID)) | 558 | if (!ResolveGroupUuid(parcel.GroupID)) |
559 | { | 559 | { |
560 | // m_log.DebugFormat("[ARCHIVE READ REQUEST]: Could not find group {0}", parcel.GroupID); | ||
560 | parcel.GroupID = UUID.Zero; | 561 | parcel.GroupID = UUID.Zero; |
561 | parcel.IsGroupOwned = false; | 562 | parcel.IsGroupOwned = false; |
562 | } | 563 | } |
564 | // else | ||
565 | // { | ||
566 | // m_log.DebugFormat("[ARCHIVE READ REQUEST]: Found group {0}", parcel.GroupID); | ||
567 | // } | ||
563 | 568 | ||
564 | List<LandAccessEntry> accessList = new List<LandAccessEntry>(); | 569 | List<LandAccessEntry> accessList = new List<LandAccessEntry>(); |
565 | foreach (LandAccessEntry entry in parcel.ParcelAccessList) | 570 | foreach (LandAccessEntry entry in parcel.ParcelAccessList) |