c-template/sdk/logger.h

13 lines
310 B
C
Raw Normal View History

2019-04-12 22:02:49 +03:00
#ifndef FLUENCE_C_SDK_LOGGER_H
#define FLUENCE_C_SDK_LOGGER_H
2019-04-21 22:23:36 +03:00
/**
* Writes provided string to Wasm VM logger.
*
2019-06-19 17:22:37 +03:00
* @param str a pointer to a message that should be logged.
* @param len a size of a message that should be logged.
2019-04-21 22:23:36 +03:00
*/
2019-04-12 22:02:49 +03:00
void wasm_log(const char *str, int len);
#endif //FLUENCE_C_SDK_LOGGER_H