PayPal\Core\PPLoggingManager::info PHP Method

info() public method

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

Usage Example

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