logger_stdout.h 457 B

1234567891011121314151617181920212223
  1. /*
  2. * This work is licensed under a Creative Commons CCZero 1.0 Universal License.
  3. * See http://creativecommons.org/publicdomain/zero/1.0/ for more information.
  4. */
  5. #ifndef LOGGER_STDOUT_H_
  6. #define LOGGER_STDOUT_H_
  7. #include "ua_types.h"
  8. #include "ua_log.h"
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. UA_EXPORT void Logger_Stdout(UA_LogLevel level, UA_LogCategory category, const char *msg, ...);
  13. #ifdef __cplusplus
  14. }
  15. #endif
  16. #endif /* LOGGER_STDOUT_H_ */