aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/Meshing
diff options
context:
space:
mode:
authorJohn Hurliman2009-10-28 01:30:39 -0700
committerJohn Hurliman2009-10-28 01:30:39 -0700
commite31024f08bfa2adeb5cab1fa2396c476528359c3 (patch)
tree7583f0a4fbc8a3d0134fd168f864929015f72a7b /OpenSim/Region/Physics/Meshing
parentModified visibilities of properties and methods. This is so that SL client ba... (diff)
downloadopensim-SC_OLD-e31024f08bfa2adeb5cab1fa2396c476528359c3.zip
opensim-SC_OLD-e31024f08bfa2adeb5cab1fa2396c476528359c3.tar.gz
opensim-SC_OLD-e31024f08bfa2adeb5cab1fa2396c476528359c3.tar.bz2
opensim-SC_OLD-e31024f08bfa2adeb5cab1fa2396c476528359c3.tar.xz
Print the exception message when CSJ2K decoding fails for sculpty textures
Diffstat (limited to 'OpenSim/Region/Physics/Meshing')
-rw-r--r--OpenSim/Region/Physics/Meshing/Meshmerizer.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Physics/Meshing/Meshmerizer.cs b/OpenSim/Region/Physics/Meshing/Meshmerizer.cs
index fbe1949..ed93b3a 100644
--- a/OpenSim/Region/Physics/Meshing/Meshmerizer.cs
+++ b/OpenSim/Region/Physics/Meshing/Meshmerizer.cs
@@ -299,12 +299,12 @@ namespace OpenSim.Region.Physics.Meshing
299 } 299 }
300 catch (IndexOutOfRangeException) 300 catch (IndexOutOfRangeException)
301 { 301 {
302 m_log.Error("[PHYSICS]: OpenJpeg was unable to decode this. Physics Proxy generation failed"); 302 m_log.Error("[PHYSICS]: OpenJpeg was unable to decode this. Physics Proxy generation failed");
303 return null; 303 return null;
304 } 304 }
305 catch (Exception) 305 catch (Exception ex)
306 { 306 {
307 m_log.Error("[PHYSICS]: Unable to generate a Sculpty physics proxy. Sculpty texture decode failed!"); 307 m_log.Error("[PHYSICS]: Unable to generate a Sculpty physics proxy. Sculpty texture decode failed: " + ex.Message);
308 return null; 308 return null;
309 } 309 }
310 } 310 }