From 507bff8233662019e7b7078b645ce035e796af5b Mon Sep 17 00:00:00 2001 From: dhewg Date: Tue, 5 Apr 2011 19:01:51 +0200 Subject: ANDROID: Log device manufacturer, model and brand --- backends/platform/android/android.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'backends/platform/android/android.cpp') diff --git a/backends/platform/android/android.cpp b/backends/platform/android/android.cpp index 6346ffa7a3..eb0e164109 100644 --- a/backends/platform/android/android.cpp +++ b/backends/platform/android/android.cpp @@ -135,7 +135,10 @@ OSystem_Android::OSystem_Android(int audio_sample_rate, int audio_buffer_size) : _trackball_scale(2) { Common::String fp = getSystemProperty("ro.build.fingerprint"); - LOGI("Running on: [%s] [%s] SDK:%s ABI:%s", + LOGI("Running on: [%s] [%s] [%s] [%s] [%s] SDK:%s ABI:%s", + getSystemProperty("ro.product.manufacturer").c_str(), + getSystemProperty("ro.product.model").c_str(), + getSystemProperty("ro.product.brand").c_str(), fp.c_str(), getSystemProperty("ro.build.display.id").c_str(), getSystemProperty("ro.build.version.sdk").c_str(), -- cgit v1.2.3