aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorUbitUmarov2019-09-03 21:28:06 +0100
committerUbitUmarov2019-09-03 21:28:06 +0100
commitc4904de6a74c8c98dfc9e8c3776adca21ad013e5 (patch)
tree3c289bcf4769542c34d464abec6a5d983ec04002
parentavoid potencial null ref (diff)
downloadopensim-SC-c4904de6a74c8c98dfc9e8c3776adca21ad013e5.zip
opensim-SC-c4904de6a74c8c98dfc9e8c3776adca21ad013e5.tar.gz
opensim-SC-c4904de6a74c8c98dfc9e8c3776adca21ad013e5.tar.bz2
opensim-SC-c4904de6a74c8c98dfc9e8c3776adca21ad013e5.tar.xz
fix one of the new warp3d log messages
-rw-r--r--OpenSim/Region/CoreModules/World/Warp3DMap/Warp3DImageModule.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/World/Warp3DMap/Warp3DImageModule.cs b/OpenSim/Region/CoreModules/World/Warp3DMap/Warp3DImageModule.cs
index 1edda0a..974b3f3 100644
--- a/OpenSim/Region/CoreModules/World/Warp3DMap/Warp3DImageModule.cs
+++ b/OpenSim/Region/CoreModules/World/Warp3DMap/Warp3DImageModule.cs
@@ -799,7 +799,7 @@ namespace OpenSim.Region.CoreModules.World.Warp3DMap
799 } 799 }
800 catch (Exception e) 800 catch (Exception e)
801 { 801 {
802 m_log.WarnFormat("[Warp3D]: Failed to decode texture {0} for prim {1} at {2}, exception {3] ", id.ToString(), sop.Name, sop.GetWorldPosition().ToString(), e); 802 m_log.WarnFormat("[Warp3D]: Failed to decode texture {0} for prim {1} at {2}, exception {3] ", id.ToString(), sop.Name, sop.GetWorldPosition().ToString(), e.Message);
803 } 803 }
804 } 804 }
805 else 805 else