From f917761740eea40c55778bf1c0c753b2dc5807a7 Mon Sep 17 00:00:00 2001 From: Szymon Janc Date: Tue, 23 Sep 2014 10:49:29 +0200 Subject: [PATCH] android: Add debug prints with configure options --- android/main.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/android/main.c b/android/main.c index 45381e67a..e99b45131 100644 --- a/android/main.c +++ b/android/main.c @@ -306,14 +306,23 @@ static void configuration(const void *buf, uint16_t len) case HAL_CONFIG_VENDOR: config_vendor = get_prop(config_vendor, prop->len, prop->val); + + DBG("vendor %s", config_vendor); + break; case HAL_CONFIG_NAME: config_name = get_prop(config_name, prop->len, prop->val); + + DBG("name %s", config_name); + break; case HAL_CONFIG_MODEL: config_model = get_prop(config_model, prop->len, prop->val); + + DBG("model %s", config_model); + break; default: error("Invalid configuration option (%u), terminating", -- 2.47.3