mirror of
https://github.com/fluencelabs/c-template
synced 2025-04-24 14:22:12 +00:00
12 lines
248 B
C
12 lines
248 B
C
#ifndef FLUENCE_C_SDK_LOGGER_H
|
|
#define FLUENCE_C_SDK_LOGGER_H
|
|
|
|
/**
|
|
* Writes provided string to Wasm VM logger.
|
|
*
|
|
* @param log_message a message that should be logged.
|
|
*/
|
|
void wasm_log(const char *str, int len);
|
|
|
|
#endif //FLUENCE_C_SDK_LOGGER_H
|