Function Mail_dispatcher_base->log

Definitions

sources/mail.php

  • Log something (to the class's internal logging, which can be accessed by the caller).
  • Visibility: protected
  • Is abstract?: No
  • Is static?: No
  • Is final?: No

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$verb string No No required parameter N/A N/A Log verb (category of what is happening)
$message string No No required parameter N/A N/A Log message

Preview

Code (PHP)

/**
 * Log something (to the class's internal logging, which can be accessed by the caller).
 *
 * @param  string $verb Log verb (category of what is happening)
 * @param  string $message Log message
 */

protected function log(string $verb, string $message)