2014-12-04 23:30:36 +01:00
|
|
|
/**
|
|
|
|
* @author Edouard DUPIN
|
|
|
|
*
|
|
|
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
|
|
|
*
|
|
|
|
* @license BSD 3 clauses (see license file)
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <appl/debug.h>
|
|
|
|
|
|
|
|
int32_t appl::getLogId() {
|
2016-03-08 21:29:34 +01:00
|
|
|
static int32_t g_val = elog::registerInstance("example");
|
2014-12-04 23:30:36 +01:00
|
|
|
return g_val;
|
|
|
|
}
|