bug#3212720 Show error message on error.
[phpmyadmin/ayax.git] / libraries / logging.lib.php
blob87642472f63a3127618c6ed702c39f0f374efee6
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * Logging functionality for webserver.
6 * This includes web server specific code to log some information.
8 * @package phpMyAdmin
9 */
11 /**
12 * Logs user information to webserver logs.
14 function PMA_log_user($user, $status = 'ok'){
15 if (function_exists('apache_note')) {
16 apache_note('userID', $user);
17 apache_note('userStatus', $status);