diff options
author | UbitUmarov | 2016-11-09 22:39:52 +0000 |
---|---|---|
committer | UbitUmarov | 2016-11-09 22:39:52 +0000 |
commit | d1baa3e0c3b1783a68061980ffd8b9693c5a474a (patch) | |
tree | 774fb5ae0be5e9b597c46af3b3b5f3e0c6a3f0d6 /OpenSim/Region/Framework/Scenes/SceneBase.cs | |
parent | stop warning about integer division cast to float (diff) | |
download | opensim-SC_OLD-d1baa3e0c3b1783a68061980ffd8b9693c5a474a.zip opensim-SC_OLD-d1baa3e0c3b1783a68061980ffd8b9693c5a474a.tar.gz opensim-SC_OLD-d1baa3e0c3b1783a68061980ffd8b9693c5a474a.tar.bz2 opensim-SC_OLD-d1baa3e0c3b1783a68061980ffd8b9693c5a474a.tar.xz |
fix some invalid string.format arguments
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneBase.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneBase.cs b/OpenSim/Region/Framework/Scenes/SceneBase.cs index 1de55ec..d406625 100644 --- a/OpenSim/Region/Framework/Scenes/SceneBase.cs +++ b/OpenSim/Region/Framework/Scenes/SceneBase.cs | |||
@@ -287,7 +287,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
287 | } | 287 | } |
288 | catch (Exception e) | 288 | catch (Exception e) |
289 | { | 289 | { |
290 | m_log.Error(string.Format("[SCENE]: SceneBase.cs: Close() - Failed with exception ", e)); | 290 | m_log.Error(string.Format("[SCENE]: SceneBase.cs: Close() - Failed with exception {0}", e)); |
291 | } | 291 | } |
292 | } | 292 | } |
293 | 293 | ||