diff options
author | Justin Clark-Casey (justincc) | 2011-08-26 21:46:12 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-08-26 21:46:12 +0100 |
commit | fcbed6479af5d64383c4ad5578ea28d7db5c3ae2 (patch) | |
tree | 7c3472793eb17e5a0e72de4e0a3dc95b15bf5d31 /OpenSim | |
parent | Fix a very recent regression from llAttachToAvatar() fix where I accidentally... (diff) | |
download | opensim-SC_OLD-fcbed6479af5d64383c4ad5578ea28d7db5c3ae2.zip opensim-SC_OLD-fcbed6479af5d64383c4ad5578ea28d7db5c3ae2.tar.gz opensim-SC_OLD-fcbed6479af5d64383c4ad5578ea28d7db5c3ae2.tar.bz2 opensim-SC_OLD-fcbed6479af5d64383c4ad5578ea28d7db5c3ae2.tar.xz |
Downgrade warning about not saving unchanged attachment to debug instead, and change text to better indicate what it's saying
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs b/OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs index afaf5c1..2c49ba8 100644 --- a/OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs | |||
@@ -552,7 +552,10 @@ namespace OpenSim.Region.CoreModules.Avatar.Attachments | |||
552 | { | 552 | { |
553 | if (!grp.HasGroupChanged) | 553 | if (!grp.HasGroupChanged) |
554 | { | 554 | { |
555 | m_log.WarnFormat("[ATTACHMENTS MODULE]: Save request for {0} which is unchanged", grp.UUID); | 555 | m_log.DebugFormat( |
556 | "[ATTACHMENTS MODULE]: Don't need to update asset for unchanged attachment {0}, attachpoint {1}", | ||
557 | grp.UUID, grp.GetAttachmentPoint()); | ||
558 | |||
556 | return; | 559 | return; |
557 | } | 560 | } |
558 | 561 | ||