2011-07-20 10:33:24 +02:00
|
|
|
/**
|
|
|
|
* @author Edouard DUPIN
|
2012-11-25 11:55:06 +01:00
|
|
|
*
|
|
|
|
* @copyright 2010, Edouard DUPIN, all right reserved
|
|
|
|
*
|
|
|
|
* @license GPL v3 (see license file)
|
2011-07-20 10:33:24 +02:00
|
|
|
*/
|
|
|
|
|
2013-10-25 20:49:26 +02:00
|
|
|
#include <appl/debug.h>
|
|
|
|
|
2014-05-15 21:37:39 +02:00
|
|
|
int32_t appl::getLogId() {
|
2014-04-30 22:18:00 +02:00
|
|
|
static int32_t g_val = etk::log::registerInstance("edn");
|
|
|
|
return g_val;
|
|
|
|
}
|
|
|
|
|