diff options
author | Justin Clark-Casey (justincc) | 2013-03-13 00:46:17 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-03-13 00:46:17 +0000 |
commit | b7216f4daffca6dad4049c84982beca6dca9b094 (patch) | |
tree | 98c884d41f909b925187c84a3914468545a33817 | |
parent | minor: Remove mono compiler warning in LLClientView (diff) | |
download | opensim-SC_OLD-b7216f4daffca6dad4049c84982beca6dca9b094.zip opensim-SC_OLD-b7216f4daffca6dad4049c84982beca6dca9b094.tar.gz opensim-SC_OLD-b7216f4daffca6dad4049c84982beca6dca9b094.tar.bz2 opensim-SC_OLD-b7216f4daffca6dad4049c84982beca6dca9b094.tar.xz |
minor: save some commented out log lines which will be useful again in future debugging of VectorRenderModule
-rw-r--r-- | OpenSim/Region/CoreModules/Scripting/VectorRender/VectorRenderModule.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/Scripting/VectorRender/VectorRenderModule.cs b/OpenSim/Region/CoreModules/Scripting/VectorRender/VectorRenderModule.cs index f04fabe..4cecd85 100644 --- a/OpenSim/Region/CoreModules/Scripting/VectorRender/VectorRenderModule.cs +++ b/OpenSim/Region/CoreModules/Scripting/VectorRender/VectorRenderModule.cs | |||
@@ -516,6 +516,9 @@ namespace OpenSim.Region.CoreModules.Scripting.VectorRender | |||
516 | foreach (string line in GetLines(data, dataDelim)) | 516 | foreach (string line in GetLines(data, dataDelim)) |
517 | { | 517 | { |
518 | string nextLine = line.Trim(); | 518 | string nextLine = line.Trim(); |
519 | |||
520 | // m_log.DebugFormat("[VECTOR RENDER MODULE]: Processing line '{0}'", nextLine); | ||
521 | |||
519 | //replace with switch, or even better, do some proper parsing | 522 | //replace with switch, or even better, do some proper parsing |
520 | if (nextLine.StartsWith("MoveTo")) | 523 | if (nextLine.StartsWith("MoveTo")) |
521 | { | 524 | { |
@@ -829,6 +832,8 @@ namespace OpenSim.Region.CoreModules.Scripting.VectorRender | |||
829 | float y = Convert.ToSingle(yVal, CultureInfo.InvariantCulture); | 832 | float y = Convert.ToSingle(yVal, CultureInfo.InvariantCulture); |
830 | PointF point = new PointF(x, y); | 833 | PointF point = new PointF(x, y); |
831 | points[i / 2] = point; | 834 | points[i / 2] = point; |
835 | |||
836 | // m_log.DebugFormat("[VECTOR RENDER MODULE]: Got point {0}", points[i / 2]); | ||
832 | } | 837 | } |
833 | } | 838 | } |
834 | } | 839 | } |