You are here

function _autologout_debug in Automated Logout 6.2

Same name and namespace in other branches
  1. 5 autologout.module \_autologout_debug()
  2. 6 autologout.module \_autologout_debug()
  3. 7.2 autologout.module \_autologout_debug()
3 calls to _autologout_debug()
autologout_admin_settings in ./autologout.admin.inc
Settings form for menu callback
autologout_nodeapi in ./autologout.module
Implementation of hook_nodeapi().
autologout_perm in ./autologout.module
Implementation of hook_perm().

File

./autologout.module, line 484
Used to automagically log out a user after a preset time, AjK May 2006

Code

function _autologout_debug($s) {
  if (defined("AUTOLOGOUT_DEBUG") && AUTOLOGOUT_DEBUG) {
    error_log($s);
  }
}