]> pilppa.org Git - libplp.git/blob - src_test/test_logs.c
049fd4ecc7faed502c8c6dcb687e7baf29f3e6ff
[libplp.git] / src_test / test_logs.c
1 /*
2  * test_ha.c
3  *
4  *  Created on: Sep 16, 2010
5  *      Author: lamikr
6  */
7
8 #include <stdio.h>
9 #include <stdlib.h>
10 #include <unistd.h>
11 #include <sys/types.h>
12 #include <sys/wait.h>
13
14 #include "log.h"
15
16 int main(int argc, char** argv)
17 {
18         log_debug("debug\n");
19         log_info("info\n");
20         log_warning("warning\n");
21         log_error("error\n");
22         return 0;
23 }