radeon: Make debugging automaticaly increase logging verbosity for debug build.
DEBUG preprocessor macro is set by configure script when --enable-debug is passed for configure. Radeon then just increase debugging verbosity if DEBUG is set in compile time.
This commit is contained in:
@@ -47,7 +47,11 @@ typedef enum radeon_debug_levels {
|
||||
* errors.
|
||||
*/
|
||||
#ifndef RADEON_DEBUG_LEVEL
|
||||
#define RADEON_DEBUG_LEVEL RADEON_VERBOSE
|
||||
# ifdef DEBUG
|
||||
# define RADEON_DEBUG_LEVEL RADEON_TRACE
|
||||
# else
|
||||
# define RADEON_DEBUG_LEVEL RADEON_VERBOSE
|
||||
# endif
|
||||
#endif
|
||||
|
||||
typedef enum radeon_debug_types {
|
||||
|
||||
Reference in New Issue
Block a user