Home PC Games Linux Windows Database Network Programming Server Mobile  
           
  Home \ Linux \ Log4cplus logging facility configuration, installation, testing     - To install Samba server on CentOS 6.6 (Server)

- How to view the Linux program or process used in the library (Linux)

- HA-Federation-HDFS + Yarn cluster deployment (Server)

- Security Features Linux and Unix operating system, programming (Linux)

- Linux scheduling summary (Linux)

- VirtualBox CentOS is configured as a local disk mirroring software source (Linux)

- 5 interesting Linux command line tips (Linux)

- Getting the Linux shell variable test (Programming)

- Let OS X support NTFS write file (Linux)

- CentOS7 virtual machine starts appear Permission denied (Linux)

- Linux Network Analysis Tcpdump Command Guide (Linux)

- How to set cache valid time in Apache (Server)

- Use top to monitor the remote server (Server)

- Ubuntu System Log Configuration / var / log / messages (Linux)

- Use chattr and lsattr command to manage linux files and directory attributes (Linux)

- Single list summarizes the basic operation (Programming)

- RedHat install GCC problem --- Depends (Linux)

- Shell Scripting Basics (Linux)

- Spring AOP for logging (Programming)

- Retro terminal in Linux (Linux)

 
         
  Log4cplus logging facility configuration, installation, testing
     
  Add Date : 2018-11-21      
         
         
         
  Log4cplus is written in C ++ open source logging system, which is very comprehensive, the initial use log4plus, described below under Linux log4cplus their own learning process configuration, installation and testing process.

1, log4cplus Introduction

log4cplus is written in C ++ open source logging system, was formerly written in java log4j system. License protected by the Apache Software. The author is Tad E. Smith. log4cplus thread-safe, flexible, and more granular control features, by prioritizing information so that it can be oriented programming commissioning, operation, testing, and maintenance life cycle; you can choose to output information to the screen, file, NT event log, and even a remote server; regular backups of the log by the specified policy.

2, log4cplus download

The latest log4cplus can be downloaded from the following URL.

log4cplus: http: //sourceforge.net/projects/log4cplus/

In RedHat Linux systems can use the following command to install:

wget http://sourceforeg.net/projects/log4cplus/files/log4cplus-stable/1.1.2/log4cplus-x.x.x.tar.gz

3, log4cplus installation

tar xvzf log4cplus-x.x.x.tar.gz

cd log4cplus-x.x.x

./configure

make

make install

4, log4cplus configuration

log4cplus default installation behind file path is / usr / local / include / log4cplus, installation files Road King library file is / usr / local / lib, edit the .bash_profile file to add the library file.

$ Vi ~ / .bash_profile

Add to:

LD_LIBRARY_PATH = LD_LIBRARY_PATH: / usr / local / lib

export LD_LIBRARY_PATH

After adding source ~ / .bash_profile changes to take effect

$ Vi / etc / profile

Add to:

CPLUS_INCLUDE_PATH = LD_LIBRARY_PATH: / usr / local / lib

export CPLUS_INCLUDE_PATH

After adding source ~ / .bash_profile changes to take effect

5, the test

#include < log4cplus / logger.h>
#include < log4cplus / configurator.h>
#include < iomanip>
#include < log4cplus / logger.h>
#include < log4cplus / fileappender.h>
#include < log4cplus / consoleappender.h>

#include < log4cplus / loggingmacros.h>
#include < log4cplus / layout.h>
#include < time.h>
using namespace std;
using namespace log4cplus;
Logger pTestLogger;

void writelog (char * leval, char * info)
{
struct tm * p;
time_t lt = time (NULL);
p = localtime (<);
char * timetemp = ctime (<);
* (Timetemp + strlen (timetemp) -1) = '\ 0';
char temp [10000];
sprintf (temp, "[% s]% s", timetemp, info);
        printf ( "temp ==% s", temp);
printf ( "leval ====% s \ n", leval);
if (memcmp (leval, "TRACE", 5) == 0)
printf ( "% d ===% d", memcmp ( "TRACE", "TRAC1E", 5), memcmp (leval, "TRACE", 5));
LOG4CPLUS_TRACE (pTestLogger, temp);
if (memcmp (leval, "DEBUG", 5) == 0)
LOG4CPLUS_DEBUG (pTestLogger, temp);
if (memcmp (leval, "INFO", 4) == 0)
LOG4CPLUS_INFO (pTestLogger, temp);
if (memcmp (leval, "WARN", 4) == 0)
LOG4CPLUS_WARN (pTestLogger, temp);
if (memcmp (leval, "ERROR", 5) == 0)
LOG4CPLUS_ERROR (pTestLogger, temp);
if (memcmp (leval, "FATAL", 5) == 0)
LOG4CPLUS_FATAL (pTestLogger, temp);
}
int main ()
{
char * info = "you have a iuns";
char filename [50];
struct tm * p;
time_t lt = time (NULL);
p = localtime (<);
sprintf (filename, "% d-% d-% d.txt", (1900 + p-> tm_year), (1 + p-> tm_mon), p-> tm_mday);
FILE * stream = fopen (filename, "wb");
SharedAppenderPtr pFileAppender (new FileAppender ((filename)));
pTestLogger = Logger :: getInstance (( "LoggerName"));
pTestLogger.addAppender (pFileAppender);
writelog ( "TRACE", info);
writelog ( "DEBUG", info);
writelog ( "ERROR", info);
        return 0;
}

Compile command

g ++ filetime.cpp -I / usr / local / log4cplus / include / -L / usr / local / log4cplus / lib -llog4cplus -o filetime
     
         
         
         
  More:      
 
- NGINX Plus now fully supports HTTP / 2 (Server)
- Close common port to protect server security (Linux)
- Fatal: unable to connect to github.com problem solving (Linux)
- Linux firewall settings instance (Linux)
- Ubuntu system safe and caution sudo su command (Linux)
- Docker commonly used commands Description (Linux)
- CentOS6.5 setup Oracle 11gR2 startup (Database)
- MongoDB, Cassandra, HBase transaction design strategy (Database)
- Inject script commands manually annotated summary (Linux)
- ORA-04031 Error Resolution (Database)
- CKEditor + SWFUpload achieve a more powerful editor (Linux)
- HTML5 Application Cache (Programming)
- Linux, MySQL root privilege escalation another method (Linux)
- Linux, set and view environment variables (Linux)
- Linux set the maximum number of open files nofile and nr_open, file-max Description (Linux)
- Windows7 / 8 / 8.1 hard drive to install Ubuntu 14.04 dual system (Linux)
- Nodejs mysql pool Example (Programming)
- CentOS 7 Add yum source (Linux)
- Ora-14450: attempt to access ah transactional temptable already in use (Database)
- Oracle EBS R12 for Linux installation (Database)
     
           
     
  CopyRight 2002-2022 newfreesoft.com, All Rights Reserved.