Skip to content

Commit e156ada

Browse files
author
Dimitri Rusin
committed
d
1 parent 186724e commit e156ada

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

include/ioh/common/factory.hpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,7 @@ namespace ioh::common
8888
}
8989
#endif
9090

91-
std::cout << "factory.hpp OUTPUT name: " << name << std::endl;
92-
std::cerr << "factory.hpp OUTPUT name: " << name << std::endl;
91+
std::cerr << "type_name OUTPUT name: " << name << std::endl;
9392
return name;
9493
}
9594

@@ -106,6 +105,8 @@ namespace ioh::common
106105
name = name.substr(name.find_last_of(' ') + 1);
107106
name = name.substr(name.find_last_of("::") + 1);
108107
name = name.substr(0, name.find_first_of(">"));
108+
109+
std::cerr << "class_name OUTPUT name: " << name << std::endl;
109110
return name;
110111
}
111112

0 commit comments

Comments
 (0)