add catch log to profiles process

This commit is contained in:
UbitUmarov
2020-03-04 04:50:54 +00:00
parent d0ba9f84df
commit ed34c00956

View File

@@ -209,9 +209,12 @@ namespace OpenSim.Region.CoreModules.Avatar.UserProfiles
}
}
}
m_asyncRequestsRunning = false;
}
catch { }
catch(Exception e )
{
m_log.ErrorFormat("[ProfileModule]: Process fail {0}",e.Message);
}
m_asyncRequestsRunning = false;
}
}