diff options
Diffstat (limited to 'al/debug.h')
-rw-r--r-- | al/debug.h | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -1,4 +1,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 */ |