#include <stdio.h> #define err(str) fprintf (stderr, "Error occurred in: %s, line %d. Msg: %s ", __FILE__, __LINE__, str);
其实还可以扩展
1. 将错误写入日志
2. 日志中包含信息有: 时间/文件名/行数/错误提示
#include <stdio.h> #define err(str) fprintf (stderr, "Error occurred in: %s, line %d. Msg: %s ", __FILE__, __LINE__, str);
其实还可以扩展
1. 将错误写入日志
2. 日志中包含信息有: 时间/文件名/行数/错误提示