function firelogmsg in filedepot 7
Same name and namespace in other branches
- 6 lib-common.php \firelogmsg()
@file lib-common.php Common library of functions for the applications
2 calls to firelogmsg()
- filedepotAjaxServer_getfilelisting in ./
lib-ajaxserver.php - @file lib-ajaxserver.php Library functions for the ajax_server
- filedepot_dispatcher in ./
ajaxserver.php
File
- ./
lib-common.php, line 11 - lib-common.php Common library of functions for the applications
Code
function firelogmsg($message) {
global $firephp, $mytimer;
$exectime = timer_read('filedepot_timer');
if (function_exists('dfb')) {
// Calls the firephp fb() function to log message to the firebug console
dfb("{$message} - time:{$exectime}");
}
}