wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



logio › WordPress Function

Seit1.2.0
Veraltet3.4.0
logio ( $io, $msg )
Parameter: (2)
  • (string) $io Whether input or output.
    Erforderlich: Ja
  • (string) $msg Information describing logging reason.
    Erforderlich: Ja
Siehe:
  • error_log()
Definiert in:
Codex:

logIO() - Writes logging info to a file.



Quellcode

function logIO( $io, $msg ) {
	_deprecated_function( __FUNCTION__, '3.4.0', 'error_log()' );
	if ( ! empty( $GLOBALS['xmlrpc_logging'] ) ) {
		error_log( $io . ' - ' . $msg );
	}
}