__android_log_print相当于printf

时间:2013-10-31 09:56:32

标签: android c

我正在尝试将此日志记录语句移植到正常工作中,因此它将在linux和android上运行我的#defined'ing it:

__android_log_print(ANDROID_LOG_ERROR, LOG_TAG, __VA_ARGS__)

我已经交叉编译了我的应用程序,无法在Linux和Android上运行。但是,由于linux没有相应的功能,我试图自己做。

/** ANDROID */
#if defined(__ANDROID__)
#include <android/log.h>
#define LOG_ERROR ANDROID_LOG_ERROR
#define LOG(PRIORITY, fmt, ...)  __android_log_print(ANDROID_LOG_UNKNOWN, LOG_TAG, fmt, ##__VA_ARGS__)
/** LINUX */
#elif defined(linux) || defined(__linux) || defined(__linux__)
#define LOG_ERROR LINUX_LOG_ERROR
#define LOG(PRIORITY, fmt, ...) printf(PRIORITY fmt, ##__VA_ARGS__)
#endif

然后在linux下运行时使用它

LOG(LOG_ERROR, "Testing loggging [ %d ]", test);

有更好的方法吗?

非常感谢任何建议,

2 个答案:

答案 0 :(得分:0)

您也可以使用syslog()函数系列来输出到系统日志而不是stdout / stderr(参见syslog.h):

void openlog(const char *ident, int option, int facility);
void syslog(int priority, const char *format, ...);
void closelog(void);

可以在/ var / log中查看日志(文件取决于syslog的选项,默认情况下,许多系统日志都在文件“messages”中)。有时这种方式比stdout / stderr更好,但你必须使用openlog / closelog。不幸的是,与android优先级相比,syslog的优先级不同,因此它不允许使用透明优先级进行简单的宏定义。
Syslog优先级:

#define LOG_EMERG   0   /* system is unusable */
#define LOG_ALERT   1   /* action must be taken immediately */
#define LOG_CRIT    2   /* critical conditions */
#define LOG_ERR     3   /* error conditions */
#define LOG_WARNING 4   /* warning conditions */
#define LOG_NOTICE  5   /* normal but significant condition */
#define LOG_INFO    6   /* informational */
#define LOG_DEBUG   7   /* debug-level messages */

android日志的优先级:

/*
 * 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;

答案 1 :(得分:0)

我设法以这种方式解决了这个问题。这是完整的解决方案。 这将在头文件

typedef enum levels_tag levels_e;
enum levels_tag {
  LOG_UNKNOWN = 0,
  LOG_DEFAULT,
  LOG_VERBOSE,
  LOG_DEBUG,
  LOG_INFO,
  LOG_WARN,
  LOG_ERROR,
  LOG_FATAL,
  LOG_SILENT,
  LOG_LAST
};

/* ANDRIOD IMPLEMENTATION */
#if defined( __ARM_EABI__)
#include <android/log.h>

levels_e levels[LOG_LAST] = {LOG_UNKNOWN,
                             LOG_DEFAULT,
                             LOG_VERBOSE,
                             LOG_DEBUG,
                             LOG_INFO,
                             LOG_WARN,
                             LOG_ERROR,
                             LOG_FATAL,
                             LOG_SILENT};

#define LOG_TAG "MODULE_LOG_SIP"

#define LOGGING(PRIORITY, fmt, ...)  __android_log_print(levels[PRIORITY], LOG_TAG, fmt, ##__VA_ARGS__)

/* LINUX IMPLEMENTATION */
#elif defined(linux) || defined(__linux) || defined(__linux__)

char *priority_levels[] = {"UNKNOWN",
                           "DEFAULT",
                           "VERBOSE",
                           "DEBUG",
                           "INFO",
                           "WARN",
                           "ERROR",
                           "FATAL",
                           "SILENT",
                           NULL };

#define LOGGING(PRIORITY, fmt, ...)                                     \
    do {                                                                \
        char *priority = priority_levels[PRIORITY];                     \
        printf("%s/%s:%d [%s] " fmt " \n", __FILE__, __func__, __LINE__, priority, ##__VA_ARGS__); \
    } while(0)

#endif

#define LOG(PRIORITY, fmt, ...) LOGGING(PRIORITY, fmt, ##__VA_ARGS__)

在您的源文件中,您只需调用LOG宏:

LOG(LOG_FATAL, "Failed to create and initialize application instance [ %d ]", errno);

现在,如果你要在linux上编译它将使用printf语句。如果你要在Android上编译,它将使用__android_log_print语句。两者都会产生相同的格式化输出。

希望这有助于其他人。