add catch log to profiles process

master
UbitUmarov 2020-03-04 04:50:54 +00:00
parent d0ba9f84df
commit ed34c00956
1 changed files with 5 additions and 2 deletions

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;
}
}