edn/sources/appl/debug.cpp

16 lines
263 B
C++
Raw Normal View History

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