defer provider

This commit is contained in:
dongwei 2019-01-11 16:27:15 +08:00
parent 08084914d0
commit f909b69cdc
2 changed files with 2 additions and 2 deletions

View File

@ -31,6 +31,7 @@ class Client
$stream->setFormatter(new $this->config['log_formatter']());
$logger = new Logger('RPC.LOGGER');
$logger->pushHandler($stream);
$logger->info('call client rpc');
$this->id = 0;
$this->logger = $logger;
}

View File

@ -19,7 +19,6 @@ class ClientServiceProvider extends ServiceProvider
public function register()
{
$this->app->configure('rpc');
$this->app->log->info("call client service provider log");
$config = config('rpc.client');
$this->app->singleton('rpc', function () use ($config) {
@ -35,6 +34,6 @@ class ClientServiceProvider extends ServiceProvider
public function provides()
{
return parent::provides(); // TODO: Change the autogenerated stub
return ['rpc'];
}
}