Skip to content

Instantly share code, notes, and snippets.

@sowamazing
Created December 1, 2014 04:35
Show Gist options
  • Save sowamazing/d4fdc9eef995ad64aed5 to your computer and use it in GitHub Desktop.
Save sowamazing/d4fdc9eef995ad64aed5 to your computer and use it in GitHub Desktop.
Built-in Logging 1
<?php
function logData($message) {
openlog('php', LOG_CONS | LOG_NDELAY | LOG_PID, LOG_USER | LOG_PERROR);
syslog(LOG_EMERG, $message);
closelog();
}
logData(“Unable to connect to MySQL database”);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment