c-template/sdk/logger.h

12 lines
248 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.
*
* @param log_message a message that should be logged.
*/
2019-04-12 22:02:49 +03:00
void wasm_log(const char *str, int len);
#endif //FLUENCE_C_SDK_LOGGER_H