aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Connectors/Inventory
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2009-11-18 18:44:47 +0000
committerJustin Clark-Casey (justincc)2009-11-18 18:44:47 +0000
commit7166f3748a95909ce75f6e4e7bf62e4e87f05c5e (patch)
tree7a6205ecbe2c97f71d5c35a28557c67b55f95635 /OpenSim/Services/Connectors/Inventory
parentminor: remove duplicate copyright notice in PollServiceWorkerThread (diff)
downloadopensim-SC_OLD-7166f3748a95909ce75f6e4e7bf62e4e87f05c5e.zip
opensim-SC_OLD-7166f3748a95909ce75f6e4e7bf62e4e87f05c5e.tar.gz
opensim-SC_OLD-7166f3748a95909ce75f6e4e7bf62e4e87f05c5e.tar.bz2
opensim-SC_OLD-7166f3748a95909ce75f6e4e7bf62e4e87f05c5e.tar.xz
minor: correct error messages when queryfolder fails
Diffstat (limited to 'OpenSim/Services/Connectors/Inventory')
-rw-r--r--OpenSim/Services/Connectors/Inventory/InventoryServiceConnector.cs5
1 files changed, 1 insertions, 4 deletions
diff --git a/OpenSim/Services/Connectors/Inventory/InventoryServiceConnector.cs b/OpenSim/Services/Connectors/Inventory/InventoryServiceConnector.cs
index e047f71..d1d0645 100644
--- a/OpenSim/Services/Connectors/Inventory/InventoryServiceConnector.cs
+++ b/OpenSim/Services/Connectors/Inventory/InventoryServiceConnector.cs
@@ -475,7 +475,7 @@ namespace OpenSim.Services.Connectors
475 } 475 }
476 catch (Exception e) 476 catch (Exception e)
477 { 477 {
478 m_log.ErrorFormat("[INVENTORY CONNECTOR]: Query inventory item operation failed, {0} {1}", 478 m_log.ErrorFormat("[INVENTORY CONNECTOR]: Query inventory folder operation failed, {0} {1}",
479 e.Source, e.Message); 479 e.Source, e.Message);
480 } 480 }
481 481
@@ -576,9 +576,6 @@ namespace OpenSim.Services.Connectors
576 } 576 }
577 577
578 callback(folders, items); 578 callback(folders, items);
579
580 } 579 }
581
582
583 } 580 }
584} 581}