We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6dc5bd8 commit 65763a2Copy full SHA for 65763a2
src/llama-impl.h
@@ -37,7 +37,6 @@ void llama_log_internal (ggml_log_level level, const char * format, ...);
37
void llama_log_callback_default(ggml_log_level level, const char * text, void * user_data);
38
39
#define LLAMA_LOG_INFO(...) llama_log_internal(GGML_LOG_LEVEL_INFO , __VA_ARGS__)
40
-#define LLAMA_LOG_DEBUG(...) llama_log_internal(GGML_LOG_LEVEL_DEBUG , __VA_ARGS__)
41
#ifdef NDEBUG
42
// Release mode - make LLAMA_LOG_DEBUG a no-op
43
#define LLAMA_LOG_DEBUG(...) ((void)0)
0 commit comments