Translated using Weblate.
[phpmyadmin.git] / libraries / logging.lib.php
blobb2688fe3d83a59250da2705e8df4e2596580c5a0
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')
16 if (function_exists('apache_note')) {
17 apache_note('userID', $user);
18 apache_note('userStatus', $status);