You are here

public static function Frx::debug in Forena Reports 7.4

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

Debug handler Enter description here ...

Parameters

unknown_type $short_message:

unknown_type $log:

1 call to Frx::debug()
FrxDataSource::debug in ./FrxDataSource.inc

File

./Frx.inc, line 263
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));
  }
}