- 论坛徽章:
- 0
|
#include <stdio.h>
#include <stdarg.h>
#include <sys/stat.h>
#include <time.h>
#include <stdlib.h>
#define LOG_SWITCH "/tmp/log_file"
#define LOG_FILE_SIZE 1024 * 1024
void print_log(const char * fmt , ... )
{
va_list args;
time_t sec;
struct tm * ltm;
FILE *lfp;
struct stat ST;
if( stat(LOG_SWITCH,&ST) == 0 )
{
if(ST.st_size > LOG_FILE_SIZE)
{
lfp = fopen(LOG_SWITCH, "w");
}
else
{
lfp = fopen(LOG_SWITCH, "a");
}
}
else
{
return;
}
sec = time(NULL);
ltm = localtime(&sec);
fprintf(lfp,"%04d-%02d-%02d/%02d:%02d:%02d ",ltm->tm_year+1900,ltm->tm_mon+1,ltm->tm_mday,\
ltm->tm_hour,ltm->tm_min,ltm->tm_sec);
va_start(args,fmt);
vfprintf(lfp,fmt,args);
va_end(args);
fclose(lfp);
}
//description
//judge whether the LOG_SWITCH is exist or not,if exist ,output the debug info to the LOG_SWITCH . else output nothing
//one of the examples
int main(void)
{
print_log("[rayklaus][%s:%s:%d]\n",__FILE__,__FUNCTION__,__LINE__);
print_log("[rayklaus][%s:%s:%d]\n",__FILE__,__FUNCTION__,__LINE__);
print_log("[rayklaus][%s:%s:%d]\n",__FILE__,__FUNCTION__,__LINE__);
print_log("[rayklaus][%s:%s:%d]\n",__FILE__,__FUNCTION__,__LINE__);
return 0;
}
|
|