2016-11-15 21:44:11 +01:00
|
|
|
/** @file
|
|
|
|
* @author Edouard DUPIN
|
|
|
|
* @copyright 2016, Edouard DUPIN, all right reserved
|
|
|
|
* @license GPL v3 (see license file)
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <appl/debug.hpp>
|
|
|
|
|
|
|
|
int32_t appl::getLogId() {
|
2017-02-09 23:31:54 +01:00
|
|
|
static int32_t g_val = elog::registerInstance("zeus-video-player");
|
2016-11-15 21:44:11 +01:00
|
|
|
return g_val;
|
|
|
|
}
|