打印并输出 log/日志到文件(C++)

#include <stdarg.h> 
#define MAX_LEN 1024
bool debug_mode;

// 使用方法同 printf
void lprintf(const char *fmt, ...) {
    static bool print_time = true; //是否要打印时间: 当 debug_mode 为真,且上一次是换行符结尾。
    char message[MAX_LEN];
    // 当前时间.
    time_t timer = time(NULL);
    strftime(message, 23, "[%Y-%m-%d %H:%M:%S] ", localtime(&timer));
    va_list args;
    va_start(args, fmt);
    vsnprintf (message + 22, MAX_LEN - 22, fmt, args);
    va_end(args);

    if (debug_mode) {
        printf("%s", message + 22);
    }

    int fd = open(LOG_FILE, O_WRONLY | O_CREAT | O_APPEND, S_IRUSR | S_IWUSR);

    if (fd == -1) {
        perror("open (log)");
    } else {
        if (print_time == false) {
            if (write(fd, message + 22, strlen(message + 22)) == -1)
                perror("lprintf");
        } else {
            if (write(fd, message, strlen(message)) == -1)
                perror("lprintf");
        }

        print_time = (message[strlen(message) - 1] == '\n');
        close(fd);
    }
}

原文链接: https://www.cnblogs.com/flipped/p/8838430.html

欢迎关注

微信关注下方公众号,第一时间获取干货硬货;公众号内回复【pdf】免费获取数百本计算机经典书籍

    打印并输出 log/日志到文件(C++)

原创文章受到原创版权保护。转载请注明出处:https://www.ccppcoding.com/archives/272364

非原创文章文中已经注明原地址,如有侵权,联系删除

关注公众号【高性能架构探索】,第一时间获取最新文章

转载文章受原作者版权保护。转载请注明原作者出处!

(0)
上一篇 2023年2月14日 下午10:39
下一篇 2023年2月14日 下午10:39

相关推荐