Skip to content
Snippets Groups Projects
Commit 6525bf16 authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Remove IMPORTANT logs

parent 3de8fdd6
No related branches found
No related tags found
2 merge requests!192Fix bugs in ArMem and make disk loading and storing nicer,!188ArMem Updates
......@@ -4,8 +4,6 @@
#include <RobotAPI/libraries/aron/core/navigator/type/container/Object.h>
#include <ArmarXCore/core/exceptions/local/ExpressionException.h>
#include <SimoxUtility/algorithm/string.h>
#include <QHeaderView>
......@@ -302,14 +300,12 @@ namespace armarx::armem::gui::memory
template <class ContainerT>
void TreeWidget::updateContainerItem(const ContainerT& container, QTreeWidgetItem* item)
{
ARMARX_IMPORTANT << "Updating container " << container.id();
updateItemItem(container, item);
item->setText(int(Columns::SIZE), QString::number(container.size()));
// Does not work
if constexpr(std::is_base_of_v<base::detail::AronTyped, ContainerT>)
{
ARMARX_IMPORTANT << "Updating type of container " << container.id();
const base::detail::AronTyped& cast = static_cast<const base::detail::AronTyped&>(container);
std::string typeName;
if (cast.aronType())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment