linux c下log出力コードテンプレート

12472 ワード

##テンプレートテンプレートは2つのファイルに分けられる:log.cとlog.h.
log.c
/** log.c **/
#include 
#include "log.h"

// log    
#define	filepath "./ps_com_log.log"
 
//    
static char * settime(char * time_s){
	time_t timer=time(NULL);
	strftime(time_s, 20, "%Y-%m-%d %H:%M:%S",localtime(&timer));
	return time_s;
}
 
/*
 *  
 * */
static int PrintfLog(char * logText, char *  string){
	FILE * fd = NULL;
	char s[1024];
	char tmp[256];

    //          
	fd = fopen(filepath,"a+");
	if(fd == NULL){
		return -1;
	}
	
	memset(s, 0, sizeof(s));
	memset(tmp, 0,sizeof(tmp));
	
	sprintf(tmp, "*****[pid=%d]:[", getpid());
	strcpy(s, tmp);
	
	memset(tmp, 0,sizeof(tmp));
	settime(tmp);
	strcat(s, tmp);

	strcat(s, "]*****");
	fprintf(fd, "%s", s);

	fprintf(fd, "*[%s]*****:
"
,logText); fprintf(fd, "%s
"
,string); fclose(fd); } /* * * */ void LogWrite(char *logText,char *string) { //[ ] pthread_mutex_lock(&mutex_log); //lock. // PrintfLog(logText, string); //[ ] pthread_mutex_unlock(&mutex_log); //unlock. }

log.h
#ifndef __LOG_H__
#define __LOG_H__
#include 
#include 
#include 
 

void LogWrite(char * logText,char *string);

#endif /* __LOG_H__ */

テストファイル
ロゴ出力機能がある以上、簡単にテストします.
#include "stdio.h"
#include "log.h"
int main(int argv,char**argc){
	printf("test
"
); LogWrite("INFO","Hello World!"); LogWrite("error","H.e.l.l.o W.o.r.l.d!"); LogWrite("mint","H e l l o W o r l d!"); LogWrite("iout","Hallo World!"); return 0; }

以上のコードは簡単で、あまり説明しません.
実行結果:
*****[pid=15971]:[2018-12-05 14:24:21]******[INFO]*****:
Hello World!
*****[pid=15971]:[2018-12-05 14:24:21]******[error]*****:
H.e.l.l.o W.o.r.l.d!
*****[pid=15971]:[2018-12-05 14:24:21]******[mint]*****:
H e l l o W o r l d!
*****[pid=15971]:[2018-12-05 14:24:21]******[iout]*****:
Hallo World!