aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-01-21 22:34:14 +0000
committerJustin Clarke Casey2008-01-21 22:34:14 +0000
commitdfb84d0d371062f29244f2f3b63b7f88e7ea33fd (patch)
treef21efa0ba99afe1e94e962b53205f54a5d599e46 /OpenSim
parentAttempt to catch animation fubar on region crossing that causes client hang. ... (diff)
downloadopensim-SC_OLD-dfb84d0d371062f29244f2f3b63b7f88e7ea33fd.zip
opensim-SC_OLD-dfb84d0d371062f29244f2f3b63b7f88e7ea33fd.tar.gz
opensim-SC_OLD-dfb84d0d371062f29244f2f3b63b7f88e7ea33fd.tar.bz2
opensim-SC_OLD-dfb84d0d371062f29244f2f3b63b7f88e7ea33fd.tar.xz
Change misleading placeholder error messages for attempts to persist non-script items to prim inventory
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/Environment/Scenes/Scene.Inventory.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs b/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs
index 10f4141..8111796 100644
--- a/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs
+++ b/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs
@@ -549,14 +549,14 @@ namespace OpenSim.Region.Environment.Scenes
549 //group.AddInventoryItem(remoteClient, primLocalID, null); 549 //group.AddInventoryItem(remoteClient, primLocalID, null);
550 MainLog.Instance.Verbose( 550 MainLog.Instance.Verbose(
551 "PRIMINVENTORY", 551 "PRIMINVENTORY",
552 "UpdateTaskInventory called with script {0}, folder {1}, primLocalID {2}, user {3}", 552 "UpdateTaskInventory called with item {0}, folder {1}, primLocalID {2}, user {3}",
553 itemID, folderID, primLocalID, remoteClient.Name); 553 itemID, folderID, primLocalID, remoteClient.Name);
554 } 554 }
555 else 555 else
556 { 556 {
557 MainLog.Instance.Warn( 557 MainLog.Instance.Warn(
558 "PRIMINVENTORY", 558 "PRIMINVENTORY",
559 "Update with script {0} requested of prim {1} for {2} but this prim does not exist", 559 "Update with item {0} requested of prim {1} for {2} but this prim does not exist",
560 itemID, primLocalID, remoteClient.Name); 560 itemID, primLocalID, remoteClient.Name);
561 } 561 }
562 } 562 }