netlog.h 468 B

123456789101112131415161718
  1. #pragma once
  2. #include "events.h"
  3. template<typename... Args> void Info(const char * fmt, Args... args) {
  4. websocket.printfAll(fmt, args...);
  5. Serial.printf(fmt, args...);
  6. }
  7. template<typename... Args> void Debug(const char * fmt, Args... args) {
  8. // websocket.printfAll(fmt, args...);
  9. // Serial.printf(fmt, args...);
  10. }
  11. template<typename... Args> void Error(const char * fmt, Args... args) {
  12. websocket.printfAll(fmt, args...);
  13. Serial.printf(fmt, args...);
  14. }