diff options
author | Dan Lake | 2012-07-18 13:05:48 -0700 |
---|---|---|
committer | Dan Lake | 2012-07-18 13:05:48 -0700 |
commit | 0dd14ca0a3c78ea4b8d02b1024ac8be8404ae427 (patch) | |
tree | a9d3a8ce5553c4e7884c6683169e8aad29b1a6fa /OpenSim/Region/Framework/Scenes | |
parent | update PrimMesher.cs to dll version r72 which fixes some path errors in slice... (diff) | |
download | opensim-SC_OLD-0dd14ca0a3c78ea4b8d02b1024ac8be8404ae427.zip opensim-SC_OLD-0dd14ca0a3c78ea4b8d02b1024ac8be8404ae427.tar.gz opensim-SC_OLD-0dd14ca0a3c78ea4b8d02b1024ac8be8404ae427.tar.bz2 opensim-SC_OLD-0dd14ca0a3c78ea4b8d02b1024ac8be8404ae427.tar.xz |
Missing parameter in log error message was throwing exception
Diffstat (limited to 'OpenSim/Region/Framework/Scenes')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneCommunicationService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneCommunicationService.cs b/OpenSim/Region/Framework/Scenes/SceneCommunicationService.cs index 661e03c..305f8a4 100644 --- a/OpenSim/Region/Framework/Scenes/SceneCommunicationService.cs +++ b/OpenSim/Region/Framework/Scenes/SceneCommunicationService.cs | |||
@@ -100,7 +100,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
100 | { | 100 | { |
101 | m_log.WarnFormat( | 101 | m_log.WarnFormat( |
102 | "[SCENE COMMUNICATION SERVICE]: Region {0} failed to inform neighbour at {1}-{2} that it is up.", | 102 | "[SCENE COMMUNICATION SERVICE]: Region {0} failed to inform neighbour at {1}-{2} that it is up.", |
103 | x / Constants.RegionSize, y / Constants.RegionSize); | 103 | m_scene.Name, x / Constants.RegionSize, y / Constants.RegionSize); |
104 | } | 104 | } |
105 | } | 105 | } |
106 | 106 | ||