File tree Expand file tree Collapse file tree
packages/kbn-plugin-generator/integration_tests Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -102,6 +102,7 @@ describe(`running the plugin-generator via 'node scripts/generate_plugin.js plug
102102 'start' ,
103103 '--optimize.enabled=false' ,
104104 '--logging.json=false' ,
105+ '--logging.verbose=true' ,
105106 '--migrations.skip=true' ,
106107 ] ,
107108 cwd : generatedPath ,
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ export class PluginWrapper<
9595 public async setup ( setupContext : CoreSetup < TPluginsStart > , plugins : TPluginsSetup ) {
9696 this . instance = this . createPluginInstance ( ) ;
9797
98- this . log . info ( 'Setting up plugin' ) ;
98+ this . log . debug ( 'Setting up plugin' ) ;
9999
100100 return this . instance . setup ( setupContext , plugins ) ;
101101 }
@@ -112,6 +112,8 @@ export class PluginWrapper<
112112 throw new Error ( `Plugin "${ this . name } " can't be started since it isn't set up.` ) ;
113113 }
114114
115+ this . log . debug ( 'Starting plugin' ) ;
116+
115117 const startContract = await this . instance . start ( startContext , plugins ) ;
116118 this . startDependencies$ . next ( [ startContext , plugins ] ) ;
117119 return startContract ;
You can’t perform that action at this time.
0 commit comments