打印並輸出 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);
    }
}


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM