2

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

__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);

有一个更好的方法吗?

非常感谢您的任何建议,

4

2 回答 2

1

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

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 语句。两者都会产生相同的格式化输出。

希望这对其他人有帮助。

于 2013-11-20T09:49:11.817 回答
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。不幸的是,syslog 的优先级与 android 的优先级不同,因此它不允许具有透明优先级的简单宏定义。
系统日志优先级:

#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;
于 2013-10-31T11:25:11.090 回答