Change misleading placeholder error messages for attempts to persist non-script items to prim inventory
parent
288c4f4a44
commit
dfb84d0d37
|
@ -549,14 +549,14 @@ namespace OpenSim.Region.Environment.Scenes
|
||||||
//group.AddInventoryItem(remoteClient, primLocalID, null);
|
//group.AddInventoryItem(remoteClient, primLocalID, null);
|
||||||
MainLog.Instance.Verbose(
|
MainLog.Instance.Verbose(
|
||||||
"PRIMINVENTORY",
|
"PRIMINVENTORY",
|
||||||
"UpdateTaskInventory called with script {0}, folder {1}, primLocalID {2}, user {3}",
|
"UpdateTaskInventory called with item {0}, folder {1}, primLocalID {2}, user {3}",
|
||||||
itemID, folderID, primLocalID, remoteClient.Name);
|
itemID, folderID, primLocalID, remoteClient.Name);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
MainLog.Instance.Warn(
|
MainLog.Instance.Warn(
|
||||||
"PRIMINVENTORY",
|
"PRIMINVENTORY",
|
||||||
"Update with script {0} requested of prim {1} for {2} but this prim does not exist",
|
"Update with item {0} requested of prim {1} for {2} but this prim does not exist",
|
||||||
itemID, primLocalID, remoteClient.Name);
|
itemID, primLocalID, remoteClient.Name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue