summaryrefslogtreecommitdiff
path: root/libdebug
diff options
context:
space:
mode:
authorDileep Marchya <dmarchya@codeaurora.org>2018-04-16 09:17:10 +0530
committerDileep Marchya <dmarchya@codeaurora.org>2018-04-16 09:17:10 +0530
commitf548680f1629cfc3a6a90e43dbef286c99ca2e94 (patch)
treecc3987ae40afdcf81090060a5b388409477aecaa /libdebug
parentb9f0ae7f8b1b08ed9b821b21e21764a22f246c17 (diff)
downloaddisplay-f548680f1629cfc3a6a90e43dbef286c99ca2e94.tar.gz
libdebug: Fix order of DLOG definitions.
Change-Id: I31d221fc083567f0a49a0944ad75dccc04a6a837 CRs-Fixed: 2223525
Diffstat (limited to 'libdebug')
-rw-r--r--libdebug/debug_handler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libdebug/debug_handler.h b/libdebug/debug_handler.h
index 0b059f7f..81795e41 100644
--- a/libdebug/debug_handler.h
+++ b/libdebug/debug_handler.h
@@ -47,9 +47,9 @@
#define DLOGV_IF(tag, format, ...) DLOG_IF(tag, Verbose, format, ##__VA_ARGS__)
#define DLOGE(format, ...) DLOG(Error, format, ##__VA_ARGS__)
-#define DLOGD(format, ...) DLOG(Debug, format, ##__VA_ARGS__)
#define DLOGW(format, ...) DLOG(Warning, format, ##__VA_ARGS__)
#define DLOGI(format, ...) DLOG(Info, format, ##__VA_ARGS__)
+#define DLOGD(format, ...) DLOG(Debug, format, ##__VA_ARGS__)
#define DLOGV(format, ...) DLOG(Verbose, format, ##__VA_ARGS__)
#define DTRACE_BEGIN(custom_string) display::DebugHandler::Get()->BeginTrace( \