From e16e2af6b552c99a25d8dd566ab05c0e07234a4a Mon Sep 17 00:00:00 2001
From: Fabian Reister <fabian.reister@kit.edu>
Date: Fri, 20 Dec 2024 07:52:41 +0100
Subject: [PATCH] removing occurances of VR_INFO (replaced by ARMARX_INFO)

---
 .../libraries/widgets/DebugLayerControlWidget.cpp      | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/source/RobotAPI/libraries/widgets/DebugLayerControlWidget.cpp b/source/RobotAPI/libraries/widgets/DebugLayerControlWidget.cpp
index 6e372e84d..c5cfdd008 100644
--- a/source/RobotAPI/libraries/widgets/DebugLayerControlWidget.cpp
+++ b/source/RobotAPI/libraries/widgets/DebugLayerControlWidget.cpp
@@ -107,14 +107,14 @@ DebugLayerControlWidget::updateLayers()
     }
     else
     {
-        VR_INFO << "No Debug Drawer" << std::endl;
+        ARMARX_INFO << "No Debug Drawer" << std::endl;
     }
 }
 
 void
 DebugLayerControlWidget::layerToggleVisibility(QString layerName)
 {
-    //VR_INFO << "should toggle: " << layerName.toStdString() << std::endl;
+    //ARMARX_INFO << "should toggle: " << layerName.toStdString() << std::endl;
     auto name = layerName.toStdString();
     if (layerVisibility.find(name) != layerVisibility.end())
     {
@@ -125,7 +125,7 @@ DebugLayerControlWidget::layerToggleVisibility(QString layerName)
     }
     else
     {
-        VR_INFO << "name not present" << std::endl;
+        ARMARX_INFO << "name not present" << std::endl;
     }
 }
 
@@ -133,7 +133,7 @@ void
 DebugLayerControlWidget::layerRemove(QString layerName)
 {
     auto name = layerName.toStdString();
-    VR_INFO << "remove layer: " << name << std::endl;
+    ARMARX_INFO << "remove layer: " << name << std::endl;
 
     if (entityDrawer->hasLayer(name))
     {
@@ -141,7 +141,7 @@ DebugLayerControlWidget::layerRemove(QString layerName)
     }
     else
     {
-        VR_INFO << "name not present" << std::endl;
+        ARMARX_INFO << "name not present" << std::endl;
     }
 }
 
-- 
GitLab