# HG changeset patch # User Sebastien Jodogne # Date 1734381212 -3600 # Node ID 4bd7e199a5e1280be20e7e4bc122e4b271d48ff0 # Parent 433e89edb3a0c19d6bbaae534c7ba64c2cb0bc69 typo diff -r 433e89edb3a0 -r 4bd7e199a5e1 OrthancServer/Sources/ResourceFinder.cpp --- a/OrthancServer/Sources/ResourceFinder.cpp Mon Dec 16 18:35:27 2024 +0100 +++ b/OrthancServer/Sources/ResourceFinder.cpp Mon Dec 16 21:33:32 2024 +0100 @@ -483,7 +483,7 @@ pagingMode_ = PagingMode_FullDatabase; if (databaseLimits_ != 0 && limitsCount_ > databaseLimits_) { - LOG(WARNING) << "ResourceFinder: 'Limit' is larger than LimitFindResults/LimitFindInstances configurations, using limit fron the configuration file"; + LOG(WARNING) << "ResourceFinder: \"Limit\" is larger than LimitFindResults/LimitFindInstances configurations, using limit from the configuration file"; limitsCount_ = databaseLimits_; } @@ -1122,7 +1122,7 @@ { std::string joinedMetaTags; FromDcmtkBridge::FormatListOfTags(joinedMetaTags, metaTagsToRemove); - LOG(WARNING) << "W006: Unable to include tags from the Meta Header in 'RequestedTags'. Skipping them: " << joinedMetaTags; + LOG(WARNING) << "W006: Unable to include tags from the Meta Header in \"RequestedTags\". Skipping them: " << joinedMetaTags; } Toolbox::RemoveSets(remainingRequestedTags, metaTagsToRemove); @@ -1142,7 +1142,7 @@ { std::string joinedTags; FromDcmtkBridge::FormatListOfTags(joinedTags, remainingRequestedTags); - LOG(WARNING) << "W007: Unable to include requested tags since 'StorageAccessOnFind' does not allow accessing the storage to build answers: " << joinedTags; + LOG(WARNING) << "W007: Unable to include requested tags since \"StorageAccessOnFind\" does not allow accessing the storage to build answers: " << joinedTags; } }