wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



logio › WordPress Function

Depuis1.2.0
Dépréciée3.4.0
logio ( $io, $msg )
Paramètres: (2)
  • (string) $io Whether input or output.
    Requis: Oui
  • (string) $msg Information describing logging reason.
    Requis: Oui
Voir:
  • error_log()
Défini(e) dans:
Codex:

logIO() - Writes logging info to a file.



Source

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