14 lines
270 B
C++
Raw Normal View History

/** @file
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.hpp>
2014-12-04 23:30:36 +01:00
int32_t appl::getLogId() {
static int32_t g_val = elog::registerInstance("example");
2014-12-04 23:30:36 +01:00
return g_val;
}