Downgrade warning about not saving unchanged attachment to debug instead, and change text to better indicate what it's saying

bulletsim
Justin Clark-Casey (justincc) 2011-08-26 21:46:12 +01:00
parent 6c692d2e21
commit fcbed6479a
1 changed files with 4 additions and 1 deletions

View File

@ -552,7 +552,10 @@ namespace OpenSim.Region.CoreModules.Avatar.Attachments
{
if (!grp.HasGroupChanged)
{
m_log.WarnFormat("[ATTACHMENTS MODULE]: Save request for {0} which is unchanged", grp.UUID);
m_log.DebugFormat(
"[ATTACHMENTS MODULE]: Don't need to update asset for unchanged attachment {0}, attachpoint {1}",
grp.UUID, grp.GetAttachmentPoint());
return;
}