From 646fc46da9aa48b94154efcd68228b0ebcde9c13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joan=20Sol=C3=A0?= <jsola@iri.upc.edu> Date: Wed, 14 Aug 2019 14:15:38 +0200 Subject: [PATCH] Increase factory registration message tabs --- include/core/common/factory.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/core/common/factory.h b/include/core/common/factory.h index 4a760ddc0..eda43efdc 100644 --- a/include/core/common/factory.h +++ b/include/core/common/factory.h @@ -267,9 +267,9 @@ inline bool Factory<TypeBase, TypeInput...>::registerCreator(const std::string& { bool reg = callbacks_.insert(typename CallbackMap::value_type(_type, createFn)).second; if (reg) - std::cout << std::setw(22) << std::left << getClass() << " <-- registered " << _type << std::endl; + std::cout << std::setw(26) << std::left << getClass() << " <-- registered " << _type << std::endl; else - std::cout << std::setw(22) << std::left << getClass() << " X-- skipping " << _type << ": already registered." << std::endl; + std::cout << std::setw(26) << std::left << getClass() << " X-- skipping " << _type << ": already registered." << std::endl; return reg; } -- GitLab