trace.h 385 B

12345678910111213141516171819202122
  1. /*
  2. * Squeezelite for esp32
  3. *
  4. * (c) Sebastien 2019
  5. * Philippe G. 2019, philippe_44@outlook.com
  6. *
  7. * This software is released under the MIT License.
  8. * https://opensource.org/licenses/MIT
  9. *
  10. */
  11. #pragma once
  12. #ifndef QUOTE
  13. #define QUOTE(name) #name
  14. #endif
  15. #ifndef STR
  16. #define STR(macro) QUOTE(macro)
  17. #endif
  18. #define ESP_LOG_DEBUG_EVENT(tag,e) ESP_LOGD(tag,"evt: " e)