Linux C log output code template sample code

Linux C log output code template sample code

Preface

This article mainly introduces the relevant content about the log output code template under Linux C, and shares it for your reference and study. Let's take a look at the detailed introduction.

template

The template is divided into two files: log.c and log.h.

log.c

/** log.c **/
#include <unistd.h>
#include "log.h"

// log file path #define filepath "./ps_com_log.log"
 
//Set time 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;
}
 
/*
 *Print* */
static int PrintfLog(char * logText, char * string){
 FILE *fd = NULL;
 char s[1024];
 char tmp[256];

 //Open the file using append method 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]*****:\n",logText); 
 fprintf(fd, "%s\n",string); 
 fclose(fd);
}
 
 /*
 *Log write* */
void LogWrite(char *logText,char *string)
{
 //[Lock is needed to support multithreading] pthread_mutex_lock(&mutex_log); //lock. 
 //Print log information PrintfLog(logText, string);
                  
 //[Lock is needed to support multithreading] pthread_mutex_unlock(&mutex_log); //unlock.            
}

log.h

#ifndef __LOG_H__
#define __LOG_H__
#include <stdio.h>
#include <string.h>
#include <time.h>
 

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

#endif /* __LOG_H__ */

Test Files

Now that we have the log output function, let's do a simple test:

#include "stdio.h"
#include "log.h"
int main(int argv,char**argc){
 printf("test\n");
 LogWrite("INFO","Hello World!");
 LogWrite("error","Hello World!");
 LogWrite("mint","Hello World!");
 LogWrite("iout","Hallo World!");

 return 0;
}

The above code is very simple and will not be explained in detail.

Running results:

*****[pid=15971]:[2018-12-05 14:24:21]******[INFO]*****:
Hello World!
*****[pid=15971]:[2018-12-05 14:24:21]******[error]*****:
Hello World!
*****[pid=15971]:[2018-12-05 14:24:21]******[mint]*****:
Hello World!
*****[pid=15971]:[2018-12-05 14:24:21]******[iout]*****:
Hallo World!

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support for 123WORDPRESS.COM.

You may also be interested in:
  • Linux uses logrotate to cut log files
  • Summary of logrotate log polling operation in Linux

<<:  Implementation steps for building multi-page programs using Webpack

>>:  WeChat applet realizes horizontal and vertical scrolling

Recommend

Implementation of docker-compose deployment project based on MySQL8

1. First, create the corresponding folder accordi...

Detailed explanation of monitoring Jenkins process based on zabbix

1. Monitoring architecture diagram 2. Implementat...

How to compile and install xdebug in Ubuntu environment

This article describes how to compile and install...

Some suggestions for Linux system optimization (kernel optimization)

Disable swap If the server is running a database ...

Two ways to open and close the mysql service

Method 1: Use cmd command First, open our DOS win...

Detailed explanation of CSS3 Flex elastic layout example code

1. Basic Concepts //Any container can be specifie...

MySQL should never write update statements like this

Table of contents Preface cause Phenomenon why? A...

Vue project implements graphic verification code

This article example shares the specific code of ...

MySQL query redundant indexes and unused index operations

MySQL 5.7 and above versions provide direct query...

Solve the problem of insufficient docker disk space

After the server where Docker is located has been...

Writing a shell script in Ubuntu to start automatically at boot (recommended)

The purpose of writing scripts is to avoid having...

202 Free High Quality XHTML Templates (1)

Here 123WORDPRESS.COM presents the first part of ...

Detailed tutorial on installing SonarQube using Docker

Table of contents 1. Pull the image 1.1 Pull the ...

HTML introductory tutorial HTML tag symbols quickly mastered

Side note <br />If you know nothing about HT...