PayPal\Core\PPLoggingManager::info PHP 메소드

info() 공개 메소드

public info ( $message )
    public function info($message)
    {
        $this->log($message, PPLoggingLevel::INFO);
    }

Usage Example

 /**
  * @test
  */
 public function testInfo()
 {
     $this->object->info('Test info Message');
 }