This function has been deprecated. Use error_log() instead.
logIO( string $io, string $msg )
logIO() – Writes logging info to a file.
Description
See also
Parameters
- $io
-
(Required) Whether input or output
- $msg
-
(Required) Information describing logging reason.
Source
File: xmlrpc.php
function logIO( $io, $msg ) {
_deprecated_function( __FUNCTION__, 'WP-3.4.0', 'error_log()' );
if ( ! empty( $GLOBALS['xmlrpc_logging'] ) )
error_log( $io . ' - ' . $msg );
}
Changelog
Version | Description |
---|---|
WP-3.4.0 | Introduced. Use error_log() |