SinricPro Library
Loading...
Searching...
No Matches
SinricProDebug.h
1/*
2 * Copyright (c) 2019 Sinric. All rights reserved.
3 * Licensed under Creative Commons Attribution-Share Alike (CC BY-SA)
4 *
5 * This file is part of the Sinric Pro (https://github.com/sinricpro/)
6 */
7
8#pragma once
9
10#ifndef NODEBUG_SINRIC
11#ifdef DEBUG_ESP_PORT
12#define DEBUG_SINRIC(...) DEBUG_ESP_PORT.printf( __VA_ARGS__ )
13#else
14//#define DEBUG_WEBSOCKETS(...) os_printf( __VA_ARGS__ )
15#endif
16#endif
17
18
19#ifndef DEBUG_SINRIC
20#define DEBUG_SINRIC(...)
21#define NODEBUG_SINRIC
22#endif