aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/RegionApplicationBase.cs
diff options
context:
space:
mode:
authorAdam Frisby2007-07-29 09:37:29 +0000
committerAdam Frisby2007-07-29 09:37:29 +0000
commit038774de30ce26120c91ccd8e1cda1b2a89e1841 (patch)
treef7f6e0c7027737b7ad77cbb4de09b734c436e903 /OpenSim/Region/ClientStack/RegionApplicationBase.cs
parent* Fixed an issue with Mono/UNIX filenames and DB4o storage engine. (diff)
downloadopensim-SC_OLD-038774de30ce26120c91ccd8e1cda1b2a89e1841.zip
opensim-SC_OLD-038774de30ce26120c91ccd8e1cda1b2a89e1841.tar.gz
opensim-SC_OLD-038774de30ce26120c91ccd8e1cda1b2a89e1841.tar.bz2
opensim-SC_OLD-038774de30ce26120c91ccd8e1cda1b2a89e1841.tar.xz
Commit 1/2
* DB4o no longer crashes the sim on Startup * DB4o now crashes the sim on shutdown. * Variety of console verbosity fixes.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ClientStack/RegionApplicationBase.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/RegionApplicationBase.cs b/OpenSim/Region/ClientStack/RegionApplicationBase.cs
index a61b9e3..bad7fec 100644
--- a/OpenSim/Region/ClientStack/RegionApplicationBase.cs
+++ b/OpenSim/Region/ClientStack/RegionApplicationBase.cs
@@ -120,13 +120,13 @@ namespace OpenSim.Region.ClientStack
120 UserProfileData masterAvatar = m_commsManager.UserServer.SetupMasterUser(scene.RegionInfo.MasterAvatarFirstName, scene.RegionInfo.MasterAvatarLastName, scene.RegionInfo.MasterAvatarSandboxPassword); 120 UserProfileData masterAvatar = m_commsManager.UserServer.SetupMasterUser(scene.RegionInfo.MasterAvatarFirstName, scene.RegionInfo.MasterAvatarLastName, scene.RegionInfo.MasterAvatarSandboxPassword);
121 if (masterAvatar != null) 121 if (masterAvatar != null)
122 { 122 {
123 m_log.Notice("Parcels - Found master avatar [" + masterAvatar.UUID.ToStringHyphenated() + "]"); 123 m_log.Verbose("PARCEL", "Found master avatar [" + masterAvatar.UUID.ToStringHyphenated() + "]");
124 scene.RegionInfo.MasterAvatarAssignedUUID = masterAvatar.UUID; 124 scene.RegionInfo.MasterAvatarAssignedUUID = masterAvatar.UUID;
125 //TODO: Load parcels from storageManager 125 //TODO: Load parcels from storageManager
126 } 126 }
127 else 127 else
128 { 128 {
129 m_log.Notice("Parcels - No master avatar found, using null."); 129 m_log.Verbose("PARCEL", "No master avatar found, using null.");
130 scene.RegionInfo.MasterAvatarAssignedUUID = libsecondlife.LLUUID.Zero; 130 scene.RegionInfo.MasterAvatarAssignedUUID = libsecondlife.LLUUID.Zero;
131 //TODO: Load parcels from storageManager 131 //TODO: Load parcels from storageManager
132 } 132 }