From 8a8be8e6ed0562fe824b46fb2aaedfb295555e64 Mon Sep 17 00:00:00 2001 From: klemmpnx <143783203+klemmpnx@users.noreply.github.com> Date: Fri, 20 Oct 2023 15:00:20 +0200 Subject: [PATCH] fix invalid debug log in case of probe module (#107) Signed-off-by: Fabian Klemm --- lib/config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/config.cpp b/lib/config.cpp index 91ca1f6a..7cfab61b 100644 --- a/lib/config.cpp +++ b/lib/config.cpp @@ -242,11 +242,11 @@ void Config::load_and_validate_manifest(const std::string& module_id, const json // load and validate module manifest.json fs::path manifest_path = this->rs->modules_dir / module_name / "manifest.yaml"; try { - EVLOG_debug << fmt::format("Loading module manifest file at: {}", fs::canonical(manifest_path).string()); if (module_name != "ProbeModule") { // FIXME (aw): this is implicit logic, because we know, that the ProbeModule manifest had been set up // manually already + EVLOG_debug << fmt::format("Loading module manifest file at: {}", fs::canonical(manifest_path).string()); this->manifests[module_name] = load_yaml(manifest_path); }