fprintf
是一个 C 语言库函数,用于将格式化的输出写入文件流
#include<stdio.h>
#include <stdlib.h>
#include<string.h>
#include <time.h>
log_message
,它接受一个文件名、一个消息和一个表示消息类型的整数(例如,0 表示信息,1 表示警告,2 表示错误):void log_message(const char *filename, const char *message, int message_type) {
// ...
}
log_message
函数中,打开指定的日志文件以追加模式:FILE *log_file = fopen(filename, "a");
if (log_file == NULL) {
printf("Error opening log file: %s\n", filename);
return;
}
time_t current_time = time(NULL);
struct tm *local_time = localtime(¤t_time);
char timestamp[20];
strftime(timestamp, sizeof(timestamp), "%Y-%m-%d %H:%M:%S", local_time);
const char *prefix;
switch (message_type) {
case 0:
prefix = "INFO";
break;
case 1:
prefix = "WARNING";
break;
case 2:
prefix = "ERROR";
break;
default:
prefix = "UNKNOWN";
}
fprintf
将格式化的日志消息写入文件:fprintf(log_file, "[%s] [%s] %s\n", timestamp, prefix, message);
fclose(log_file);
现在,你可以在程序中调用 log_message
函数来记录日志。例如:
int main() {
log_message("example.log", "This is an info message.", 0);
log_message("example.log", "This is a warning message.", 1);
log_message("example.log", "This is an error message.", 2);
return 0;
}
这将在 example.log
文件中创建以下日志条目:
[2022-01-01 12:34:56] [INFO] This is an info message.
[2022-01-01 12:34:56] [WARNING] This is a warning message.
[2022-01-01 12:34:56] [ERROR] This is an error message.
这只是一个简单的示例,实际应用中可能需要更复杂的日志记录功能。但是,fprintf
是实现这些功能的基本工具。