Add more details to InvalidOperationException logging in SychronousRestFormsRequest.MakeRequest().
parent
91333b9267
commit
1f4f09ad69
|
@ -1064,10 +1064,11 @@ namespace OpenSim.Framework
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (System.InvalidOperationException)
|
catch (System.InvalidOperationException e)
|
||||||
{
|
{
|
||||||
// This is what happens when there is invalid XML
|
m_log.Debug(
|
||||||
m_log.DebugFormat("[FORMS]: InvalidOperationException on receiving {0} {1}", verb, requestUrl);
|
string.Format(
|
||||||
|
"[FORMS]: InvalidOperationException on response from {0} {1} ", verb, requestUrl), e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue