Very simple program to write log.
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #include <pj/log.h>
00020
00029 int main()
00030 {
00031 pj_status_t rc;
00032
00033
00034
00035
00036 rc = pj_init();
00037
00038 PJ_LOG(3, ("main.c", "Hello world!"));
00039
00040 return 0;
00041 }
00042