You are here

public static function Frx::debug in Forena Reports 7.3

Same name and namespace in other branches
  1. 7.5 Frx.inc \Frx::debug()
  2. 7.4 Frx.inc \Frx::debug()

Debug handler Enter description here ...

Parameters

unknown_type $short_message:

unknown_type $log:

File

./Frx.inc, line 194
Frx.incL General Forena Reporting Class

Class

Frx

Code

public static function debug($short_message = '', $log = '') {
  if ($log) {
    watchdog('forena debug', $log, NULL);
  }
  if ($short_message) {
    drupal_set_message(check_markup($short_message));
  }
}