HI all
in many of the wpa_supplicant code they are using ENTER and LEAVE
macros to display the logs(Below). At last it will call
android_printf.
I want to make sure that only message with MSG_WARNING should be
displayed. so what I did is I assigned
wpa_debug_leve = MSG_WARNING so since
--
unsubscribe: android-porti...@googlegroups.com
website: http://groups.google.com/group/android-porting
You can also disable all the stdout message by compile the wpa_supplicant
with CONFIG_NO_STDOUT_DEBUG.
By the way,the value of all the debug level is as fallows:
enum { MSG_MSGDUMP, MSG_DEBUG, MSG_INFO, MSG_WARNING, MSG_ERROR };
2010/6/15 guru <guru....@gmail.com>: