diff options
author | Justin Clarke Casey | 2009-03-25 19:14:36 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2009-03-25 19:14:36 +0000 |
commit | 19595a28253e413d986f2f1ebc879ba9eb4c0e8a (patch) | |
tree | 6e7ede85ecece0d48f3c450805594644e9a6a239 /OpenSim/Region/Application/OpenSimBase.cs | |
parent | adding presence.ControllingClient.Kick(msg) to the brew. (diff) | |
download | opensim-SC_OLD-19595a28253e413d986f2f1ebc879ba9eb4c0e8a.zip opensim-SC_OLD-19595a28253e413d986f2f1ebc879ba9eb4c0e8a.tar.gz opensim-SC_OLD-19595a28253e413d986f2f1ebc879ba9eb4c0e8a.tar.bz2 opensim-SC_OLD-19595a28253e413d986f2f1ebc879ba9eb4c0e8a.tar.xz |
* minor: spit out creator name on save iar
* not yet ready for use
Diffstat (limited to 'OpenSim/Region/Application/OpenSimBase.cs')
-rw-r--r-- | OpenSim/Region/Application/OpenSimBase.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs index 941a7d2..05f773e 100644 --- a/OpenSim/Region/Application/OpenSimBase.cs +++ b/OpenSim/Region/Application/OpenSimBase.cs | |||
@@ -423,7 +423,7 @@ namespace OpenSim | |||
423 | IAssetCache assetCache = null; | 423 | IAssetCache assetCache = null; |
424 | if (m_configSettings.AssetCache != null && m_configSettings.AssetCache != String.Empty) | 424 | if (m_configSettings.AssetCache != null && m_configSettings.AssetCache != String.Empty) |
425 | { | 425 | { |
426 | m_log.DebugFormat("[OPENSIMBASE] Attempting to load asset cache id={0}", m_configSettings.AssetCache); | 426 | m_log.DebugFormat("[OPENSIMBASE]: Attempting to load asset cache id = {0}", m_configSettings.AssetCache); |
427 | try | 427 | try |
428 | { | 428 | { |
429 | PluginInitialiserBase init = new AssetCachePluginInitialiser(m_configSettings, assetServer); | 429 | PluginInitialiserBase init = new AssetCachePluginInitialiser(m_configSettings, assetServer); |
@@ -436,7 +436,7 @@ namespace OpenSim | |||
436 | } | 436 | } |
437 | catch (Exception e) | 437 | catch (Exception e) |
438 | { | 438 | { |
439 | m_log.Debug("[OPENSIMBASE] ResolveAssetCache completed"); | 439 | m_log.Debug("[OPENSIMBASE]: ResolveAssetCache completed"); |
440 | m_log.Debug(e); | 440 | m_log.Debug(e); |
441 | } | 441 | } |
442 | } | 442 | } |
@@ -449,12 +449,12 @@ namespace OpenSim | |||
449 | { | 449 | { |
450 | if (LoginEnabled) | 450 | if (LoginEnabled) |
451 | { | 451 | { |
452 | m_log.Info("[Login] Login are now enabled "); | 452 | m_log.Info("[Login]: Login is now enabled "); |
453 | m_commsManager.GridService.RegionLoginsEnabled = true; | 453 | m_commsManager.GridService.RegionLoginsEnabled = true; |
454 | } | 454 | } |
455 | else | 455 | else |
456 | { | 456 | { |
457 | m_log.Info("[Login] Login are now disabled "); | 457 | m_log.Info("[Login]: Login is now disabled "); |
458 | m_commsManager.GridService.RegionLoginsEnabled = false; | 458 | m_commsManager.GridService.RegionLoginsEnabled = false; |
459 | } | 459 | } |
460 | } | 460 | } |