From d8d048cfa1c9faeefba00516054a30e56641e709 Mon Sep 17 00:00:00 2001 From: Justin Clark-Casey (justincc) Date: Fri, 23 Sep 2011 22:45:02 +0100 Subject: oops, reinstate the try catching of async_call_method but leave the logging disabled --- OpenSim/Framework/Util.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/OpenSim/Framework/Util.cs b/OpenSim/Framework/Util.cs index f187ab8..00ef8ca 100644 --- a/OpenSim/Framework/Util.cs +++ b/OpenSim/Framework/Util.cs @@ -1550,16 +1550,16 @@ namespace OpenSim.Framework { Culture.SetCurrentCulture(); -// try -// { + try + { callback(o); -// } -// catch (Exception e) -// { + } + catch (Exception e) + { // m_log.ErrorFormat( // "[UTIL]: Continuing after async_call_method thread terminated with exception {0}{1}", // e.Message, e.StackTrace); -// } + } }; switch (FireAndForgetMethod) -- cgit v1.1