From 8ce8e11ba6a54807d38654f8a0c3be3119b48b01 Mon Sep 17 00:00:00 2001 From: Rainer Kartmann <rainer.kartmann@kit.edu> Date: Wed, 4 May 2022 18:39:12 +0200 Subject: [PATCH] Reduce log output when using ArViz Godot --- source/RobotAPI/components/ArViz/ArVizStorage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/RobotAPI/components/ArViz/ArVizStorage.cpp b/source/RobotAPI/components/ArViz/ArVizStorage.cpp index c442efa53..5430091b2 100644 --- a/source/RobotAPI/components/ArViz/ArVizStorage.cpp +++ b/source/RobotAPI/components/ArViz/ArVizStorage.cpp @@ -605,7 +605,7 @@ armarx::viz::data::RecordingSeq armarx::ArVizStorage::getAllRecordings(const Ice for (std::filesystem::directory_entry const& entry : std::filesystem::directory_iterator(historyPath)) { - ARMARX_INFO << "Checking: " << entry.path(); + ARMARX_DEBUG << "Checking: " << entry.path(); if (!entry.is_directory()) { -- GitLab