You are here

function _drd_server_watchdog in Drupal Remote Dashboard Server 6.2

Same name and namespace in other branches
  1. 7.2 drd_server.module \_drd_server_watchdog()

Internal watchdog replacement which only reports to watchdog if debugging is switched on by the remote DRD dashboard.

Parameters

string $message:

array $variables:

int $severity:

string $link:

6 calls to _drd_server_watchdog()
drd_server_key in ./drd_server.module
This is called to update the excryption keys for this server and all it's domains hosted in the same Drupal installation.
drd_server_key_remote in ./drd_server.module
This is called to update encryption keys on all domains.
drd_server_read_sites in ./drd_server.module
Determines all available sites/domains in the current Drupal installation.
drd_server_server_check_host in ./drd_server.server.inc
Function called by drd_server_server_domains() to check a specific URL if it really exists and if the module drd_server is installed.
_drd_server_read_settings in ./drd_server.module
Safely read the settings.php file and return the relevant variables.

... See full list

File

./drd_server.module, line 856

Code

function _drd_server_watchdog($message, $variables = array(), $severity = WATCHDOG_NOTICE, $link = NULL) {
  if (_drd_server_debug_mode()) {
    watchdog('DRD Server', $message, $variables, $severity, $link);
  }
}