淺談Android系統開發中LOG的使用

來源:互聯網
上載者:User

         在程式開發過程中,LOG是廣泛使用的用來記錄程式執行過程的機制,它既可以用於程式調試,也可以用於產品運營中的事件記錄。在Android系統中,提供了簡單、便利的LOG機制,開發人員可以方便地使用。在這一篇文章中,我們簡單介紹在Android核心空間和使用者空間中LOG的使用和查看方法。

        一. 核心開發時LOG的使用。Android核心是基於Linux Kerne 2.36的,因此,Linux Kernel的LOG機制同樣適合於Android核心,它就是有名的printk,與C語言的printf齊名。與printf類似,printk提供格式化輸入功能,同時,它也具有所有LOG機制的特點--提供記錄層級過慮功能。printk提供了8種記錄層級(<linux/kernel.h>):

#define KERN_EMERG"<0>" /* system is unusable */#define KERN_ALERT"<1>" /* action must be taken immediately*/#define KERN_CRIT"<2>" /* critical conditions*/#deinfe KERN_ERR"<3>" /* error conditions*/#deinfe KERN_WARNING"<4>" /* warning conditions*/#deinfe KERN_NOTICE"<5>" /* normal but significant condition*/#deinfe KERN_INFO"<6>" /* informational */#deinfe KERN_DEBUG"<7>" /* debug-level messages */

       printk的使用方法:

       printk(KERN_ALERT"This is the log printed by printk in linux kernel space.");

       KERN_ALERT表示記錄層級,後面緊跟著要格式化字串。

       在Android系統中,printk輸出的日誌資訊儲存在/proc/kmsg中,要查看/proc/kmsg的內容,參照在Ubuntu上下載、編譯和安裝Android最新核心原始碼(Linux Kernel)一文,在後台中運行模擬器:

       USER-NAME@MACHINE-NAME:~/Android$ emulator &

       啟動adb shell工具:

       USER-NAME@MACHINE-NAME:~/Android$ adb shell

       查看/proc/kmsg檔案:

       root@android:/ # cat  /proc/kmsg

       二. 使用者空間程式開發時LOG的使用。Android系統在使用者空間中提供了輕量級的logger日誌系統,它是在核心中實現的一種裝置驅動,與使用者空間的logcat工具配合使用能夠方便地跟蹤偵錯工具。在Android系統中,分別為C/C++ 和Java語言提供兩種不同的logger提供者。C/C++日誌介面一般是在編寫硬體抽象層模組或者編寫JNI方法時使用,而Java介面一般是在應用程式層編寫APP時使用。

       Android系統中的C/C++日誌介面是通過宏來使用的。在system/core/include/android/log.h定義了日誌的層級:

/* * Android log priority values, in ascending priority order. */typedef enum android_LogPriority {ANDROID_LOG_UNKNOWN = 0,ANDROID_LOG_DEFAULT,/* only for SetMinPriority() */ANDROID_LOG_VERBOSE,ANDROID_LOG_DEBUG,ANDROID_LOG_INFO,ANDROID_LOG_WARN,ANDROID_LOG_ERROR,ANDROID_LOG_FATAL,ANDROID_LOG_SILENT,/* only for SetMinPriority(); must be last */} android_LogPriority;

       在system/core/include/cutils/log.h中,定義了對應的宏,如對應於ANDROID_LOG_VERBOSE的宏LOGV:

/* * This is the local tag used for the following simplified * logging macros. You can change this preprocessor definition * before using the other macros to change the tag. */#ifndef LOG_TAG#define LOG_TAG NULL#endif/* * Simplified macro to send a verbose log message using the current LOG_TAG. */#ifndef LOGV#if LOG_NDEBUG#define LOGV(...)   ((void)0)#else#define LOGV(...)   ((void)LOG(LOG_VERBOSE, LOG_TAG, __VA_ARGS__))#endif#endif/* * Basic log message macro. * * Example: *  LOG(LOG_WARN, NULL, "Failed with error %d", errno); * * The second argument may be NULL or "" to indicate the "global" tag. */#ifndef LOG#define LOG(priority, tag, ...) \     LOG_PRI(ANDROID_##priority, tag, __VA_ARGS__)#endif/* * Log macro that allows you to specify a number for priority. */#ifndef LOG_PRI#define LOG_PRI(priority, tag, ...) \     android_printLog(priority, tag, __VA_ARGS__)#endif/* * ================================================================ * * The stuff in the rest of this file should not be used directly. */#define android_printLog(prio, tag, fmt...) \     __android_log_print(prio, tag, fmt)

         因此,如果要使用C/C++日誌介面,只要定義自己的LOG_TAG宏和包含標頭檔system/core/include/cutils/log.h就可以了:

         #define LOG_TAG "MY LOG TAG"

         #include <cutils/log.h>

         就可以了,例如使用LOGV:

         LOGV("This is the log printed by LOGV in android user space.");

         再來看Android系統中的Java日誌介面。Android系統在Frameworks層中定義了Log介面(frameworks/base/core/java/android/util/Log.java):

................................................public final class Log {................................................/** * Priority constant for the println method; use Log.v.         */public static final int VERBOSE = 2;/** * Priority constant for the println method; use Log.d.         */public static final int DEBUG = 3;/** * Priority constant for the println method; use Log.i.         */public static final int INFO = 4;/** * Priority constant for the println method; use Log.w.         */public static final int WARN = 5;/** * Priority constant for the println method; use Log.e.         */public static final int ERROR = 6;/** * Priority constant for the println method.         */public static final int ASSERT = 7;.....................................................public static int v(String tag, String msg) {return println_native(LOG_ID_MAIN, VERBOSE, tag, msg);}public static int v(String tag, String msg, Throwable tr) {return println_native(LOG_ID_MAIN, VERBOSE, tag, msg + '\n' + getStackTraceString(tr));}public static int d(String tag, String msg) {return println_native(LOG_ID_MAIN, DEBUG, tag, msg);}public static int d(String tag, String msg, Throwable tr) {return println_native(LOG_ID_MAIN, DEBUG, tag, msg + '\n' + getStackTraceString(tr));}public static int i(String tag, String msg) {return println_native(LOG_ID_MAIN, INFO, tag, msg);}public static int i(String tag, String msg, Throwable tr) {return println_native(LOG_ID_MAIN, INFO, tag, msg + '\n' + getStackTraceString(tr));}public static int w(String tag, String msg) {return println_native(LOG_ID_MAIN, WARN, tag, msg);}public static int w(String tag, String msg, Throwable tr) {return println_native(LOG_ID_MAIN, WARN, tag, msg + '\n' + getStackTraceString(tr));}public static int w(String tag, Throwable tr) {return println_native(LOG_ID_MAIN, WARN, tag, getStackTraceString(tr));}public static int e(String tag, String msg) {return println_native(LOG_ID_MAIN, ERROR, tag, msg);}public static int e(String tag, String msg, Throwable tr) {return println_native(LOG_ID_MAIN, ERROR, tag, msg + '\n' + getStackTraceString(tr));}................................................................../**@hide */ public static native int println_native(int bufID,int priority, String tag, String msg);}

        因此,如果要使用Java日誌介面,只要在類中定義的LOG_TAG常量和引用android.util.Log就可以了:

        private static final String LOG_TAG = "MY_LOG_TAG";

        Log.i(LOG_TAG, "This is the log printed by Log.i in android user space.");

        要查看這些LOG的輸出,可以配合logcat工具。如果是在Eclipse環境下運行模擬器,並且安裝了Android外掛程式,那麼,很簡單,直接在Eclipse就可以查看了:

        

        如果是在自己編譯的Android原始碼工程中使用,則在後台中運行模擬器:

       USER-NAME@MACHINE-NAME:~/Android$ emulator &

       啟動adb shell工具:

       USER-NAME@MACHINE-NAME:~/Android$ adb shell

       使用logcat命令查看日誌:

       root@android:/ # logcat

       這樣就可以看到輸出的日誌了。

老羅的新浪微博:http://weibo.com/shengyangluo,歡迎關注!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.