2024-01-25 13:01:28 +07:00
|
|
|
# zlog
|
2013-11-21 10:33:29 +08:00
|
|
|
|
|
|
|
zlog is a reliable, high-performance, thread safe, flexible, clear-model, pure C logging library.
|
|
|
|
|
2024-04-11 13:06:53 +07:00
|
|
|
Actually, in the C world there was NO good logging library for applications like logback in java or log4cxx in c++.
|
|
|
|
Using printf can work, but can not be redirected or reformatted easily. syslog is slow and is designed for system use.
|
2024-01-25 13:01:28 +07:00
|
|
|
So I wrote zlog.
|
|
|
|
It is faster, safer and more powerful than log4c. So it can be widely used.
|
2013-11-21 10:33:29 +08:00
|
|
|
|
2024-01-25 13:01:28 +07:00
|
|
|
## 1. Install
|
2013-11-21 10:33:29 +08:00
|
|
|
|
2024-01-25 13:01:28 +07:00
|
|
|
Downloads: <https://github.com/HardySimpson/zlog/releases>
|
2013-11-21 10:33:29 +08:00
|
|
|
|
2024-01-25 13:01:28 +07:00
|
|
|
```bash
|
|
|
|
tar -zxvf zlog-latest-stable.tar.gz
|
|
|
|
cd zlog-latest-stable/
|
|
|
|
make
|
|
|
|
sudo make install
|
|
|
|
```
|
2013-11-24 08:07:39 +08:00
|
|
|
|
2024-01-25 13:01:28 +07:00
|
|
|
Or
|
|
|
|
|
|
|
|
```bash
|
|
|
|
make PREFIX=/usr/local/
|
|
|
|
sudo make PREFIX=/usr/local/ install
|
|
|
|
```
|
2013-11-21 10:33:29 +08:00
|
|
|
|
2024-04-11 13:06:53 +07:00
|
|
|
PREFIX indicates the installation destination for zlog. After installation, refresh your dynamic linker to make sure
|
|
|
|
your program can find zlog library.
|
2013-11-21 10:33:29 +08:00
|
|
|
|
2024-01-25 13:01:28 +07:00
|
|
|
```bash
|
|
|
|
$ sudo vi /etc/ld.so.conf
|
|
|
|
/usr/local/lib
|
|
|
|
$ sudo ldconfig
|
|
|
|
```
|
2013-11-21 10:33:29 +08:00
|
|
|
|
2024-04-11 13:06:53 +07:00
|
|
|
Before running a real program, make sure libzlog.so is in the directory where the system's dynamic lib loader can find
|
|
|
|
it. The command metioned above are for linux. Other systems will need a similar set of actions.
|
2013-11-21 10:33:29 +08:00
|
|
|
|
2024-01-25 13:01:28 +07:00
|
|
|
## 2. Configuration file
|
2013-11-21 10:33:29 +08:00
|
|
|
|
|
|
|
There are 3 important concepts in zlog: categories, formats and rules.
|
|
|
|
|
2024-07-04 18:37:17 -07:00
|
|
|
Categories specify different kinds of log entries. In the zlog source code, category is a `zlog_category_t *` variable.
|
2024-04-11 13:06:53 +07:00
|
|
|
In your program, different categories for the log entries will distinguish them from each other.
|
2013-11-21 10:33:29 +08:00
|
|
|
|
|
|
|
Formats describe log patterns, such as: with or without time stamp, source file, source line.
|
|
|
|
|
2024-04-11 13:06:53 +07:00
|
|
|
Rules consist of category, level, output file (or other channel) and format. In brief, if the category string in a rule
|
|
|
|
in the configuration file equals the name of a category variable in the source, then they match. Still there is complex
|
|
|
|
match range of category. Rule decouples variable conditions. For example, log4j must specify a level for each logger(or
|
|
|
|
inherit from father logger). That's not convenient when each grade of logger has its own level for output(child logger
|
|
|
|
output at the level of debug, when father logger output at the level of error)
|
2013-11-21 10:33:29 +08:00
|
|
|
|
|
|
|
Now create a configuration file. The function zlog_init takes the files path as its only argument.
|
2013-11-24 08:07:39 +08:00
|
|
|
|
2024-01-25 13:01:28 +07:00
|
|
|
```bash
|
|
|
|
$ cat /etc/zlog.conf
|
|
|
|
|
|
|
|
[formats]
|
|
|
|
simple = "%m%n"
|
|
|
|
[rules]
|
|
|
|
my_cat.DEBUG >stdout; simple
|
|
|
|
```
|
|
|
|
|
2024-04-11 13:06:53 +07:00
|
|
|
In the configuration file log messages in the category `my_cat` and a level of DEBUG or higher are output to standard
|
|
|
|
output, with the format of simple `%m - usermessage %n - newline`. If you want to direct out to a file and limit the
|
|
|
|
files maximum size, use this configuration
|
2024-01-25 13:01:28 +07:00
|
|
|
|
|
|
|
```config
|
|
|
|
my_cat.DEBUG "/var/log/aa.log", 1M; simple
|
|
|
|
```
|
|
|
|
|
|
|
|
## 3. Using zlog API in C source file
|
|
|
|
|
|
|
|
### 3.1 Sample code
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ vi test_hello.c
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "zlog.h"
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
zlog_category_t *c;
|
|
|
|
|
|
|
|
rc = zlog_init("/etc/zlog.conf");
|
|
|
|
if (rc) {
|
|
|
|
printf("init failed\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
c = zlog_get_category("my_cat");
|
|
|
|
if (!c) {
|
|
|
|
printf("get cat fail\n");
|
|
|
|
zlog_fini();
|
|
|
|
return -2;
|
|
|
|
}
|
|
|
|
|
|
|
|
zlog_info(c, "hello, zlog");
|
|
|
|
|
|
|
|
zlog_fini();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### 3.2 Compile, and run it
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ cc -c -o test_hello.o test_hello.c -I/usr/local/include
|
|
|
|
$ cc -o test_hello test_hello.o -L/usr/local/lib -lzlog -lpthread
|
|
|
|
$ ./test_hello
|
|
|
|
hello, zlog
|
|
|
|
```
|
|
|
|
|
|
|
|
## 4. Advanced Usage
|
|
|
|
|
|
|
|
* syslog model, better than log4j model
|
|
|
|
* log format customization
|
2024-04-11 13:06:53 +07:00
|
|
|
* multiple output destinations including static file path, dynamic file path, stdout, stderr, syslog, user-defined
|
|
|
|
output
|
2024-01-25 13:01:28 +07:00
|
|
|
* runtime manually or automatically refresh configure(safely)
|
|
|
|
* high-performance, 250'000 logs/second on my laptop, about 1000 times faster than syslog(3) with rsyslogd
|
|
|
|
* user-defined log level
|
|
|
|
* thread-safe and process-safe log file rotation
|
|
|
|
* microsecond accuracy
|
|
|
|
* dzlog, a default category log API for easy use
|
|
|
|
* MDC, a log4j style key-value map
|
|
|
|
* self debuggable, can output zlog's self debug&error log at runtime
|
|
|
|
* No external dependencies, just based on a POSIX system and a C99 compliant vsnprintf.
|
|
|
|
|
|
|
|
## 5. Reference
|
2013-11-24 08:07:39 +08:00
|
|
|
|
2024-01-25 13:01:28 +07:00
|
|
|
* Homepage: <http://hardysimpson.github.io/zlog>
|
|
|
|
* Downloads: <https://github.com/HardySimpson/zlog/releases>
|
|
|
|
* Author's Email: <HardySimpson1984@gmail.com>
|
|
|
|
* Auto tools version: <https://github.com/bmanojlovic/zlog>
|
|
|
|
* CMake verion: <https://github.com/lisongmin/zlog>
|
|
|
|
* Windows version: <https://github.com/lopsd07/WinZlog>
|