vary common-code logging tag by variant

This commit is contained in:
Eric House 2015-08-13 07:02:57 -07:00
parent 7824df67f5
commit dea75a815e

View file

@ -695,7 +695,13 @@ android_debugf( const char* format, ... )
va_end(ap);
}
(void)__android_log_write( ANDROID_LOG_DEBUG, "xw4", buf );
(void)__android_log_write( ANDROID_LOG_DEBUG,
# if defined VARIANT_xw4
"xw4"
# elif defined VARIANT_xw4dbg
"x4bg"
# endif
, buf );
}
#endif