2025-05-04 12:48:02 +02:00
|
|
|
#include "bind_satdump.h"
|
|
|
|
|
#include "logger.h"
|
|
|
|
|
|
|
|
|
|
namespace satdump
|
|
|
|
|
{
|
|
|
|
|
namespace script
|
|
|
|
|
{
|
|
|
|
|
namespace namelog
|
|
|
|
|
{
|
|
|
|
|
void trace(std::string &f) { logger->trace("[AngelScript] " + f); }
|
|
|
|
|
void debug(std::string &f) { logger->debug("[AngelScript] " + f); }
|
|
|
|
|
void info(std::string &f) { logger->info("[AngelScript] " + f); }
|
|
|
|
|
void warn(std::string &f) { logger->warn("[AngelScript] " + f); }
|
|
|
|
|
void error(std::string &f) { logger->error("[AngelScript] " + f); }
|
|
|
|
|
void critical(std::string &f) { logger->critical("[AngelScript] " + f); }
|
|
|
|
|
} // namespace namelog
|
|
|
|
|
|
|
|
|
|
void registerLogger(asIScriptEngine *engine)
|
|
|
|
|
{
|
|
|
|
|
// Register logger
|
|
|
|
|
engine->SetDefaultNamespace("logger");
|
|
|
|
|
engine->RegisterGlobalFunction("void trace(const string &in)", asFUNCTION(namelog::trace), asCALL_CDECL);
|
|
|
|
|
engine->RegisterGlobalFunction("void debug(const string &in)", asFUNCTION(namelog::debug), asCALL_CDECL);
|
|
|
|
|
engine->RegisterGlobalFunction("void info(const string &in)", asFUNCTION(namelog::info), asCALL_CDECL);
|
2025-05-15 14:04:34 +02:00
|
|
|
engine->RegisterGlobalFunction("void warn(const string &in)", asFUNCTION(namelog::warn), asCALL_CDECL);
|
2025-05-04 12:48:02 +02:00
|
|
|
engine->RegisterGlobalFunction("void error(const string &in)", asFUNCTION(namelog::error), asCALL_CDECL);
|
|
|
|
|
engine->RegisterGlobalFunction("void critical(const string &in)", asFUNCTION(namelog::critical), asCALL_CDECL);
|
|
|
|
|
}
|
|
|
|
|
} // namespace script
|
|
|
|
|
} // namespace satdump
|