Skip to content
Snippets Groups Projects
Commit 0a4dc3e1 authored by pkupczyk's avatar pkupczyk
Browse files

BIS-185 / Make long-running method calls in IDataStoreService use service conversations

BIS-196 / Make service conversations timeout configurable - change progress log level from info to debug

SVN: 26835
parent 8cc1d028
No related branches found
No related tags found
No related merge requests found
......@@ -155,7 +155,7 @@ class ClientMessenger implements IServiceConversation
ServiceMessage message = responseMessageQueue.poll(timeout);
while (message != null && message.getProgress() != null)
{
operationLog.info(message.getProgress());
operationLog.debug(message.getProgress());
message = responseMessageQueue.poll(timeout);
}
return message;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment