blob: 23b0ca1bdcf594827f873e6a52d55d9d601ed4ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef AL_DEBUG_H
#define AL_DEBUG_H
#include <stdint.h>
/* Somewhat arbitrary. Avoid letting it get out of control if the app enables
* logging but never reads it.
*/
constexpr uint8_t MaxDebugLoggedMessages{64};
constexpr uint16_t MaxDebugMessageLength{1024};
#endif /* AL_DEBUG_H */
|