SWDEV-559267 - Use CLPrint to DevLogPrintf with Log Level - detail debug. (#1160)

This commit is contained in:
Karthik Jayaprakash
2025-11-25 19:25:32 -05:00
committed by GitHub
vanhempi 93682f2f75
commit 740a06d567
20 muutettua tiedostoa jossa 130 lisäystä ja 99 poistoa
@@ -258,12 +258,5 @@ inline void warning(const char* msg) { amd::report_warning(msg); }
ClPrint(amd::LOG_WARNING, amd::LOG_ALWAYS, format, ##__VA_ARGS__)
#define LogPrintfInfo(format, ...) ClPrint(amd::LOG_INFO, amd::LOG_ALWAYS, format, ##__VA_ARGS__)
#if (defined(DEBUG) || defined(DEV_LOG_ENABLE))
#define DevLogPrintfError(format, ...) LogPrintfError(format, ##__VA_ARGS__)
#define DevLogError(msg) LogError(msg)
#else
#define DevLogPrintfError(format, ...)
#define DevLogError(msg)
#endif
#endif /*DEBUG_HPP_*/