16 lines
307 B
C++
16 lines
307 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
|
|
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);
|
|
|
|
}
|