On Tue, Oct 01, 2013 at 02:58:37PM +0200, Frederic Danis wrote: > --- > android/log.c | 172 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ > android/main.c | 34 +++++++++++ > 2 files changed, 206 insertions(+) > create mode 100644 android/log.c What is the status with review. Do I understand correctly that it needs to be changed something like: void info(const char *format, ...) { va_list ap; va_start(ap, format); - android_log(LOG_INFO, format, ap); + vfprintf(stderr, format, ap); + fprintf(stderr, "\n"); va_end(ap); } If so I can change this myself and resend patch series. Best regards Andrei Emeltchenko -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html