[#LDBG] = LDBG :mrdocs: output. The default level is 1, and is in increasing level of verbosity. == Synopsis Declared in `<llvm/Support/DebugLog.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- #define LDBG(...) ---- == Description The `level` argument can be a literal integer, or a macro that evaluates to an integer. An optional `type` argument can be provided to control the debug type. The default type is DEBUG_TYPE. The `type` argument can be a literal string, or a macro that evaluates to a string. E.g., LDBG(2) << "Bitset contains: " << Bitset; LDBG("debug_type") << "Bitset contains: " << Bitset; LDBG("debug_type", 2) << "Bitset contains: " << Bitset; [.small]#Created with https://www.mrdocs.com[MrDocs]#