Skip to content

Commit c0625db

Browse files
author
San Mehat
committedJun 16, 2009
wpa_supplicant: Connect wpa_printf() -> android logging framework so we can
log output messages from wpa_supplicant. Signed-off-by: San Mehat <[email protected]>
1 parent 68f5944 commit c0625db

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
 

‎common.c

+18
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@
1616

1717
#include "common.h"
1818

19+
#ifdef ANDROID
20+
#include <cutils/log.h>
21+
#endif
22+
1923

2024
#ifdef CONFIG_DEBUG_FILE
2125
static FILE *out_file = NULL;
@@ -191,6 +195,20 @@ void wpa_printf(int level, char *fmt, ...)
191195
#ifdef CONFIG_DEBUG_FILE
192196
}
193197
#endif /* CONFIG_DEBUG_FILE */
198+
#ifdef ANDROID
199+
if (level == MSG_DEBUG)
200+
level = ANDROID_LOG_DEBUG;
201+
else if (level == MSG_INFO)
202+
level = ANDROID_LOG_INFO;
203+
else if (level == MSG_WARNING)
204+
level = ANDROID_LOG_WARN;
205+
else if (level == MSG_ERROR)
206+
level = ANDROID_LOG_ERROR;
207+
else
208+
level = ANDROID_LOG_DEBUG;
209+
210+
LOG_PRI_VA(level, "wpa_supplicant", fmt, ap);
211+
#endif
194212
}
195213
va_end(ap);
196214
}

0 commit comments

Comments
 (0)
Please sign in to comment.