minor: correct error messages when queryfolder fails

0.6.8-post-fixes
Justin Clark-Casey (justincc) 2009-11-18 18:44:47 +00:00
parent 47e482217e
commit 7166f3748a
2 changed files with 2 additions and 7 deletions

View File

@ -52,8 +52,6 @@ namespace OpenSim.Framework.Servers.HttpServer
private bool m_running = true; private bool m_running = true;
private int m_timeout = 250; private int m_timeout = 250;
public PollServiceWorkerThread(BaseHttpServer pSrv, int pTimeout) public PollServiceWorkerThread(BaseHttpServer pSrv, int pTimeout)
{ {
m_request = new BlockingQueue<PollServiceHttpRequest>(); m_request = new BlockingQueue<PollServiceHttpRequest>();

View File

@ -475,7 +475,7 @@ namespace OpenSim.Services.Connectors
} }
catch (Exception e) catch (Exception e)
{ {
m_log.ErrorFormat("[INVENTORY CONNECTOR]: Query inventory item operation failed, {0} {1}", m_log.ErrorFormat("[INVENTORY CONNECTOR]: Query inventory folder operation failed, {0} {1}",
e.Source, e.Message); e.Source, e.Message);
} }
@ -576,9 +576,6 @@ namespace OpenSim.Services.Connectors
} }
callback(folders, items); callback(folders, items);
} }
} }
} }