From ec7f0be20bd5ad270095ee36f6e24909341ea0a5 Mon Sep 17 00:00:00 2001 From: koparasy Date: Fri, 27 Oct 2023 16:53:02 -0700 Subject: [PATCH] Fixed DBG info message of HDCache --- src/ml/hdcache.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ml/hdcache.hpp b/src/ml/hdcache.hpp index 1b7cc346..cfaa9548 100644 --- a/src/ml/hdcache.hpp +++ b/src/ml/hdcache.hpp @@ -250,8 +250,9 @@ class HDCache ~HDCache() { - DBG(Surrogate, "Destroying UQ-cache"); + DBG(UQModule, "Deleting UQ-Module"); if (m_index) { + DBG(UQModule, "Deleting HD-Cache"); m_index->reset(); delete m_index; }