aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llxmlrpctransaction.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/newview/llxmlrpctransaction.cpp')
-rw-r--r--linden/indra/newview/llxmlrpctransaction.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/linden/indra/newview/llxmlrpctransaction.cpp b/linden/indra/newview/llxmlrpctransaction.cpp
index 7179104..9b49eb9 100644
--- a/linden/indra/newview/llxmlrpctransaction.cpp
+++ b/linden/indra/newview/llxmlrpctransaction.cpp
@@ -569,10 +569,10 @@ F64 LLXMLRPCTransaction::transferRate()
569 569
570 double rate_bits_per_sec = impl.mTransferInfo.mSpeedDownload * 8.0; 570 double rate_bits_per_sec = impl.mTransferInfo.mSpeedDownload * 8.0;
571 571
572 llinfos << "Buffer size: " << impl.mResponseText.size() << " B" << llendl; 572 LL_INFOS("AppInit") << "Buffer size: " << impl.mResponseText.size() << " B" << LL_ENDL;
573 llinfos << "Transfer size: " << impl.mTransferInfo.mSizeDownload << " B" << llendl; 573 LL_DEBUGS("AppInit") << "Transfer size: " << impl.mTransferInfo.mSizeDownload << " B" << LL_ENDL;
574 llinfos << "Transfer time: " << impl.mTransferInfo.mTotalTime << " s" << llendl; 574 LL_DEBUGS("AppInit") << "Transfer time: " << impl.mTransferInfo.mTotalTime << " s" << LL_ENDL;
575 llinfos << "Transfer rate: " << rate_bits_per_sec / 1000.0 << " Kb/s" << llendl; 575 LL_INFOS("AppInit") << "Transfer rate: " << rate_bits_per_sec / 1000.0 << " Kb/s" << LL_ENDL;
576 576
577 return rate_bits_per_sec; 577 return rate_bits_per_sec;
578} 578}