mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
plugin: remove dump() method from registry
This commit is contained in:
parent
93dbd9c964
commit
e041b93143
2 changed files with 0 additions and 13 deletions
|
@ -51,8 +51,6 @@ public:
|
|||
getLogger()
|
||||
{ return loggerGetOrCreate("plugin:registry"); }
|
||||
|
||||
static void dump();
|
||||
|
||||
static void add(Plugin *p)
|
||||
{
|
||||
if (plugins == nullptr)
|
||||
|
|
|
@ -100,17 +100,6 @@ Plugin::dump()
|
|||
logger->info("Name: '{}' Description: '{}'", name, description);
|
||||
}
|
||||
|
||||
void
|
||||
Registry::dump()
|
||||
{
|
||||
auto logger = Registry::getLogger();
|
||||
|
||||
logger->info("Registered plugins:");
|
||||
for(auto p : *plugins) {
|
||||
logger->info(" - {}", p->getName());
|
||||
}
|
||||
}
|
||||
|
||||
std::string Plugin::getName()
|
||||
{
|
||||
return name;
|
||||
|
|
Loading…
Add table
Reference in a new issue