#pragma once #include namespace atlas::script::module::debug { /** * @brief Log a message * @details Display a message in the execution logs * @param category the category of the message * @param message the message */ void log(const std::string& category, const std::string& message); }