Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/SimulationRunner.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1596,8 +1596,6 @@ void SimulationRunner::CreateEntities(const sdf::World &_world)
this->entityCompMgr.ProcessRemoveEntityRequests();
this->entityCompMgr.ClearRemovedComponents();

this->LoadLoggingPlugins(this->serverConfig);

// Load any additional plugins from the Server Configuration
this->LoadServerPlugins(this->serverConfig.Plugins());

Expand Down Expand Up @@ -1653,6 +1651,8 @@ void SimulationRunner::CreateEntities(const sdf::World &_world)
}

this->LoadServerPlugins(defaultPlugins);
this->LoadLoggingPlugins(this->serverConfig);

};

// Store the initial state of the ECM;
Expand Down
Loading