| 1115 | } |
| 1116 | |
| 1117 | void application_impl::initialize_plugins() const |
| 1118 | { |
| 1119 | for( const auto& entry : _active_plugins ) |
| 1120 | { |
| 1121 | ilog( "Initializing plugin ${name}", ( "name", entry.second->plugin_name() ) ); |
| 1122 | entry.second->plugin_initialize( *_options ); |
| 1123 | ilog( "Initialized plugin ${name}", ( "name", entry.second->plugin_name() ) ); |
| 1124 | } |
| 1125 | } |
| 1126 | |
| 1127 | void application_impl::startup_plugins() const |
| 1128 | { |
nothing calls this directly
no test coverage detected