For some specific demands, it adds extra tag 'DEBUG' for TV profile.
The tag will be used for logging miscellaneous stuff.
This tag is only avaliable on TV profile.
Change-Id: I81575e9bd0ebaaeb073bc1c6b48774f656a4a27a
Signed-off-by: Jonghwa Lee <jonghwa3.lee@samsung.com>
#ifdef TTRACE_PROFILE_MOBILE
#elif defined TTRACE_PROFILE_TV
{ "system", "System", TTRACE_TAG_SYSTEM, { } },
+ { "debug", "For extra debugging purpose", TTRACE_TAG_DEBUG, { } },
#elif defined TTRACE_PROFILE_WEARABLE
#endif
};
#elif defined TTRACE_PROFILE_TV
//define TAGs belonging to tv profile only
#define TTRACE_TAG_SYSTEM (1<<21)
+#define TTRACE_TAG_DEBUG (1<<22)
#elif defined TTRACE_PROFILE_WEARABLE
//define TAGs belonging to wearable profile only
#endif