Comments
[phpmyadmin.git] / libraries / logging.lib.php
blob1dabc9a118167ec22a75dc4e142835f1c633a396
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);