|
1 | 1 | /*
|
2 |
| - * Copyright (C) 2019-2024 HERE Europe B.V. |
| 2 | + * Copyright (C) 2019-2025 HERE Europe B.V. |
3 | 3 | *
|
4 | 4 | * Licensed under the Apache License, Version 2.0 (the "License");
|
5 | 5 | * you may not use this file except in compliance with the License.
|
@@ -234,14 +234,14 @@ bool PartitionsCacheRepository::Get(geo::TileKey tile_key, int32_t depth,
|
234 | 234 |
|
235 | 235 | bool PartitionsCacheRepository::Clear() {
|
236 | 236 | auto key = catalog_ + "::" + layer_id_ + "::";
|
237 |
| - OLP_SDK_LOG_INFO_F(kLogTag, "Clear -> '%s'", key.c_str()); |
| 237 | + OLP_SDK_LOG_TRACE_F(kLogTag, "Clear -> '%s'", key.c_str()); |
238 | 238 | return cache_->RemoveKeysWithPrefix(key);
|
239 | 239 | }
|
240 | 240 |
|
241 | 241 | bool PartitionsCacheRepository::ClearPartitions(
|
242 | 242 | const std::vector<std::string>& partition_ids,
|
243 | 243 | const boost::optional<int64_t>& version) {
|
244 |
| - OLP_SDK_LOG_INFO_F(kLogTag, "ClearPartitions -> '%s'", catalog_.c_str()); |
| 244 | + OLP_SDK_LOG_TRACE_F(kLogTag, "ClearPartitions -> '%s'", catalog_.c_str()); |
245 | 245 | auto cached_partitions = Get(partition_ids, version);
|
246 | 246 | bool passed = true;
|
247 | 247 |
|
@@ -274,7 +274,7 @@ client::ApiNoResponse PartitionsCacheRepository::ClearPartitionMetadata(
|
274 | 274 | boost::optional<model::Partition>& out_partition) {
|
275 | 275 | const auto key = cache::KeyGenerator::CreatePartitionKey(
|
276 | 276 | catalog_, layer_id_, partition_id, catalog_version);
|
277 |
| - OLP_SDK_LOG_INFO_F(kLogTag, "ClearPartitionMetadata -> '%s'", key.c_str()); |
| 277 | + OLP_SDK_LOG_TRACE_F(kLogTag, "ClearPartitionMetadata -> '%s'", key.c_str()); |
278 | 278 |
|
279 | 279 | auto read_response = cache_->Read(key);
|
280 | 280 | if (!read_response) {
|
|
0 commit comments