diff options
author | UbitUmarov | 2019-09-03 21:28:06 +0100 |
---|---|---|
committer | UbitUmarov | 2019-09-03 21:28:06 +0100 |
commit | c4904de6a74c8c98dfc9e8c3776adca21ad013e5 (patch) | |
tree | 3c289bcf4769542c34d464abec6a5d983ec04002 | |
parent | avoid potencial null ref (diff) | |
download | opensim-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.cs | 2 |
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 |