logger_stdout.h 449 B

12345678910111213141516171819
  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. #ifdef NOT_AMALGATED
  8. #include "ua_types.h"
  9. #include "ua_log.h"
  10. #else
  11. #include "open62541.h"
  12. #endif
  13. /** Initialises the logger for the current thread. */
  14. UA_Logger Logger_Stdout_new(void);
  15. #endif /* LOGGER_STDOUT_H_ */