getLogLevelMapping() public method

Returns the log level mapping for an event.
public getLogLevelMapping ( string $eventName ) : string
$eventName string
return string
 /**
  * @expectedException \DomainException
  */
 public function testGetInvalidLogLevelMapping()
 {
     $listener = new GitLoggerListener(new NullLogger());
     $listener->getLogLevelMapping('bad.event');
 }