You are here

function _simplesaml_auth_debug in simpleSAMLphp Authentication 6.2

Same name and namespace in other branches
  1. 6.3 simplesamlphp_auth.module \_simplesaml_auth_debug()
  2. 7 simplesamlphp_auth.module \_simplesaml_auth_debug()
  3. 7.2 simplesamlphp_auth.module \_simplesaml_auth_debug()

This helper function is used by developers to debug the form API workflow in this module.

6 calls to _simplesaml_auth_debug()
simplesamlphp_auth_init in ./simplesamlphp_auth.module
Implementation of hook_init().
simplesamlphp_auth_user in ./simplesamlphp_auth.module
Implementation of hook_user().
_simplesamlphp_auth_evaulaterolerule in ./simplesamlphp_auth.module
Evaluates a role rule.
_simplesamlphp_auth_forcehttps_rewrite in ./simplesamlphp_auth.module
Forces HTTPS connections.
_simplesamlphp_auth_get_authname in ./simplesamlphp_auth.module
Gets the authname attribute from the SAML assertion.

... See full list

File

./simplesamlphp_auth.module, line 832
simpleSAMLphp authentication module for Drupal.

Code

function _simplesaml_auth_debug($message) {
  watchdog('simplesamlphp', $message, NULL, WATCHDOG_DEBUG);
}