mirror of
https://github.com/opensim/opensim.git
synced 2026-05-17 12:15:33 +08:00
Mantis 1357 Patch - Thanks mikem!
This commit is contained in:
@@ -296,18 +296,22 @@ namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase
|
||||
{
|
||||
// Send inner exception
|
||||
string[] lines=e.InnerException.ToString().Replace("\r", "").Split('\n');
|
||||
int line=0;
|
||||
string line = " (unknown line)";
|
||||
foreach (string t in lines)
|
||||
{
|
||||
int idx=t.IndexOf("SecondLife.Script.");
|
||||
if (idx != -1)
|
||||
{
|
||||
int colon=t.IndexOf(":");
|
||||
line=Convert.ToInt32(t.Substring(colon+1));
|
||||
break;
|
||||
|
||||
if(-1 != colon)
|
||||
{
|
||||
line = " at line " + Convert.ToInt32(t.Substring(colon + 1)).ToString();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
text += e.InnerException.Message.ToString()+" in line "+line.ToString();
|
||||
text += e.InnerException.Message.ToString() + line;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user