示例#1
0
文件: Emitter.php 项目: tomaj/hermes
 /**
  * {@inheritdoc}
  */
 public function emit(MessageInterface $message)
 {
     $this->driver->send($message);
     $this->log(LogLevel::INFO, "Dispatcher send message #{$message->getId()} to driver " . get_class($this->driver), $this->messageLoggerContext($message));
     return $this;
 }