logIO( string $io, string $msg )

This function has been deprecated. Use error_log() instead.

logIO() – Writes logging info to a file.

Description

See also

Parameters

$iostringrequired
Whether input or output.
$msgstringrequired
Information describing logging reason.

Source

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

Changelog

VersionDescription
3.4.0Use error_log()
1.2.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.