mirror of
https://github.com/fluencelabs/fluid
synced 2025-04-25 06:42:18 +00:00
13 lines
310 B
C
13 lines
310 B
C
|
#ifndef FLUENCE_C_SDK_LOGGER_H
|
||
|
#define FLUENCE_C_SDK_LOGGER_H
|
||
|
|
||
|
/**
|
||
|
* Writes provided string to Wasm VM logger.
|
||
|
*
|
||
|
* @param str a pointer to a message that should be logged.
|
||
|
* @param len a size of a message that should be logged.
|
||
|
*/
|
||
|
void wasm_log(const char *str, int len);
|
||
|
|
||
|
#endif //FLUENCE_C_SDK_LOGGER_H
|