webCOMAND

log::log_notice()

Log a note event to the event log.

Prototype

void log_notice(string $message, mixed $extra = NULL, long $timetamp = NULL)

Parameters

  • message - Message about the event.
  • extra - Optional string, array or other data that corresponds to event.
  • timestamp - Optional Unix timestamp the event occurred, otherwise the current time will be used.

Example

$log->log_notice("An event of interest to the end user has occurred.");

Related

repo::log_notice()