# HG changeset patch # User Sebastien Jodogne # Date 1551776849 -3600 # Node ID 7d56105ab084c0e29a2f0b45ccda1aa5b4eaf4bb # Parent 2452e15d774666f634bab4ec208c60bbfc7c239c improved logging diff -r 2452e15d7746 -r 7d56105ab084 Plugin/PluginContext.cpp --- a/Plugin/PluginContext.cpp Mon Mar 04 17:27:50 2019 +0100 +++ b/Plugin/PluginContext.cpp Tue Mar 05 10:07:29 2019 +0100 @@ -38,14 +38,15 @@ { cache_.SetMaxMemorySize(memoryCacheSize); - LOG(INFO) << "Transfers accelerator will use " << threadsCount << " threads to run HTTP queries"; + LOG(INFO) << "Transfers accelerator will use " << threadsCount_ << " thread(s) to run HTTP queries"; LOG(INFO) << "Transfers accelerator will use keep local DICOM files in a memory cache of size: " << OrthancPlugins::ConvertToMegabytes(memoryCacheSize) << " MB"; LOG(INFO) << "Transfers accelerator will aim at HTTP queries of size: " - << OrthancPlugins::ConvertToKilobytes(targetBucketSize) << " KB"; + << OrthancPlugins::ConvertToKilobytes(targetBucketSize_) << " KB"; LOG(INFO) << "Transfers accelerator will be able to receive up to " - << maxPushTransactions << " push transactions at once"; - + << maxPushTransactions << " push transaction(s) at once"; + LOG(INFO) << "Transfers accelerator will retry " + << maxHttpRetries_ << " time(s) if some HTTP query fails"; }