\brief Debug print which is disabled in release-mode. It takes a variable number of parameters which are normalized if they are a \ref std::string or a \ref StringRef.
| 69 | /// |
| 70 | /// It takes a variable number of parameters which are normalized if they are a \ref std::string or a \ref StringRef. |
| 71 | inline void DPrint([[maybe_unused]] const char* fmt, [[maybe_unused]] const auto&... args) |
| 72 | { |
| 73 | #ifdef INSIGHTS_DEBUG |
| 74 | details::FPrintf(fmt, args...); |
| 75 | #endif /* INSIGHTS_DEBUG */ |
| 76 | } |
| 77 | //----------------------------------------------------------------------------- |
| 78 | |
| 79 | /// \brief Log an error. |