handle_request(); exit; /** * Writes logging info to a file. * * @since 2.2.0 * @deprecated 3.4.0 * @deprecated Use error_log() * @link http://www.php.net/manual/en/function.error-log.php * * @param string $label Type of logging * @param string $msg Information describing logging reason. */ function log_app( $label, $msg ) { _deprecated_function( __FUNCTION__, '3.4', 'error_log()' ); if ( ! empty( $GLOBALS['app_logging'] ) ) error_log( $label . ' - ' . $msg ); }