Is it possible to specify that MySQLi sends any errors and warnings to the PHP default 'error_log' directive? I can't seem to find any error options for the class specification, and I don't wish to handle errors manually like so:
if ($result = $mysqli->query("...")) { }
else
handle $mysqli->error;