diff options
Diffstat (limited to 'src/zenstore')
| -rw-r--r-- | src/zenstore/gc.cpp | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/src/zenstore/gc.cpp b/src/zenstore/gc.cpp index b08e6a3ca..1ddb25364 100644 --- a/src/zenstore/gc.cpp +++ b/src/zenstore/gc.cpp @@ -764,7 +764,7 @@ GcManager::CollectGarbage(const GcSettings& Settings) } catch (const std::bad_alloc& Ex) { - ZEN_ERROR("GCV2: Failed removing expired data for {}. Reason: '{}'", Owner->GetGcName(Ctx), Ex.what()); + ZEN_WARN("GCV2: Failed removing expired data for {}. Reason: '{}'", Owner->GetGcName(Ctx), Ex.what()); SetCancelGC(true); } catch (const std::exception& Ex) @@ -857,9 +857,9 @@ GcManager::CollectGarbage(const GcSettings& Settings) } catch (const std::bad_alloc& Ex) { - ZEN_ERROR("GCV2: Failed creating reference pruners for {}. Reason: '{}'", - ReferenceStore->GetGcName(Ctx), - Ex.what()); + ZEN_WARN("GCV2: Failed creating reference pruners for {}. Reason: '{}'", + ReferenceStore->GetGcName(Ctx), + Ex.what()); SetCancelGC(true); } catch (const std::exception& Ex) @@ -969,9 +969,9 @@ GcManager::CollectGarbage(const GcSettings& Settings) } catch (const std::bad_alloc& Ex) { - ZEN_ERROR("GCV2: Failed creating reference checkers for {}. Reason: '{}'", - Referencer->GetGcName(Ctx), - Ex.what()); + ZEN_WARN("GCV2: Failed creating reference checkers for {}. Reason: '{}'", + Referencer->GetGcName(Ctx), + Ex.what()); SetCancelGC(true); } catch (const std::exception& Ex) @@ -1083,9 +1083,9 @@ GcManager::CollectGarbage(const GcSettings& Settings) } catch (const std::bad_alloc& Ex) { - ZEN_ERROR("GCV2: Failed creating reference validators for {}. Reason: '{}'", - Referencer->GetGcName(Ctx), - Ex.what()); + ZEN_WARN("GCV2: Failed creating reference validators for {}. Reason: '{}'", + Referencer->GetGcName(Ctx), + Ex.what()); SetCancelGC(true); } catch (const std::exception& Ex) @@ -1148,7 +1148,7 @@ GcManager::CollectGarbage(const GcSettings& Settings) } catch (const std::bad_alloc& Ex) { - ZEN_ERROR("GCV2: Failed precaching for {}. Reason: '{}'", Checker->GetGcName(Ctx), Ex.what()); + ZEN_WARN("GCV2: Failed precaching for {}. Reason: '{}'", Checker->GetGcName(Ctx), Ex.what()); SetCancelGC(true); } catch (const std::exception& Ex) @@ -1368,9 +1368,9 @@ GcManager::CollectGarbage(const GcSettings& Settings) } catch (const std::bad_alloc& Ex) { - ZEN_ERROR("GCV2: Failed removing unused data for {}. Reason: '{}'", - Pruner->GetGcName(Ctx), - Ex.what()); + ZEN_WARN("GCV2: Failed removing unused data for {}. Reason: '{}'", + Pruner->GetGcName(Ctx), + Ex.what()); SetCancelGC(true); } catch (const std::exception& Ex) @@ -1451,7 +1451,7 @@ GcManager::CollectGarbage(const GcSettings& Settings) } catch (const std::bad_alloc& Ex) { - ZEN_ERROR("GCV2: Failed compacting store {}. Reason: '{}'", Compactor->GetGcName(Ctx), Ex.what()); + ZEN_WARN("GCV2: Failed compacting store {}. Reason: '{}'", Compactor->GetGcName(Ctx), Ex.what()); SetCancelGC(true); } catch (const std::exception& Ex) @@ -1509,7 +1509,7 @@ GcManager::CollectGarbage(const GcSettings& Settings) } catch (const std::bad_alloc& Ex) { - ZEN_ERROR("GCV2: Failed validating referencer {}. Reason: '{}'", ReferenceValidator->GetGcName(Ctx), Ex.what()); + ZEN_WARN("GCV2: Failed validating referencer {}. Reason: '{}'", ReferenceValidator->GetGcName(Ctx), Ex.what()); SetCancelGC(true); } catch (const std::exception& Ex) |