Skip to content

Commit b06414e

Browse files
Remove excessive logging (#1211)
Remove some excessing logging about removal of data from DataCacheRepository and PartitionsCacheRepository Resolves: OAM-1024 Signed-off-by: Serhii Lozynskyi <[email protected]>
1 parent 356866b commit b06414e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

olp-cpp-sdk-dataservice-read/src/repositories/DataCacheRepository.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ bool DataCacheRepository::IsCached(const std::string& layer_id,
8383
bool DataCacheRepository::Clear(const std::string& layer_id,
8484
const std::string& data_handle) {
8585
auto key = CreateKey(layer_id, data_handle);
86-
OLP_SDK_LOG_INFO_F(kLogTag, "Clear -> '%s'", key.c_str());
86+
OLP_SDK_LOG_DEBUG_F(kLogTag, "Clear -> '%s'", key.c_str());
8787

8888
return cache_->RemoveKeysWithPrefix(key);
8989
}

olp-cpp-sdk-dataservice-read/src/repositories/PartitionsCacheRepository.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ bool PartitionsCacheRepository::ClearQuadTree(
273273
geo::TileKey tile_key, int32_t depth,
274274
const boost::optional<int64_t>& version) {
275275
const auto key = CreateQuadKey(tile_key, depth, version);
276-
OLP_SDK_LOG_INFO_F(kLogTag, "ClearQuadTree -> '%s'", key.c_str());
276+
OLP_SDK_LOG_DEBUG_F(kLogTag, "ClearQuadTree -> '%s'", key.c_str());
277277
return cache_->RemoveKeysWithPrefix(key);
278278
}
279279

0 commit comments

Comments
 (0)