public static function Frx::debug in Forena Reports 7.5
Same name and namespace in other branches
- 7.3 Frx.inc \Frx::debug()
- 7.4 Frx.inc \Frx::debug()
Debug handler Enter description here ...
Parameters
unknown_type $short_message:
unknown_type $log:
2 calls to Frx::debug()
- FrxDataSource::debug in src/
Driver/ FrxDataSource.php - FrxMSSQL::sqlData in src/
Driver/ FrxMSSQL.php - Get data based on file data block in the repository.
File
- ./
Frx.inc, line 243 - Frx.incL General Forena Reporting Class
Class
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));
}
}