X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=res%2Blog%2Fgw-log-test.c;h=3d82ffc6f8f502bef14b61768721f5e34de5b24a;hb=a3501ea5b2dd4a1b1aff2b5ab66e7a028299cdbc;hp=ea5a22666d051c4d3a4b2f57856bf674d7df8d56;hpb=5bc115d3b598f5ad198411dcd033a91a8356c9be;p=egate.git diff --git a/res+log/gw-log-test.c b/res+log/gw-log-test.c index ea5a226..3d82ffc 100644 --- a/res+log/gw-log-test.c +++ b/res+log/gw-log-test.c @@ -1,16 +1,19 @@ /* - gw-log-test.c: Test of logging facilities. - - Europagate, 1994-1995. - - $Log: gw-log-test.c,v $ - Revision 1.1 1995/02/09 17:27:11 adam - Initial revision - - - Initial: Dec 7, 94 (Adam Dickmeiss) - Last update: Dec 13, 94 (Adam Dickmeiss) - + * Test of logging facilities. + * + * Europagate, 1994-1995. + * + * $Log: gw-log-test.c,v $ + * Revision 1.4 1995/04/10 13:20:25 adam + * Use gettimeofday(2) instead of time(2) to get log time in milliseconds. + * + * Revision 1.3 1995/02/23 08:32:21 adam + * Changed header. + * + * Revision 1.1.1.1 1995/02/09 17:27:12 adam + * Initial version of email gateway under CVS control. + * + * Initial: Dec 7, 94 (Adam Dickmeiss) */ #include @@ -25,6 +28,10 @@ int main (int argc, char **argv) gw_log_init (*argv); gw_log_file (GW_LOG_ALL, "all.log"); + gw_log_file (GW_LOG_WARN, "warn.log"); + + gw_log (GW_LOG_ALL, "Msg", "Hi all except WARN"); + gw_log (GW_LOG_WARN, "Msg", "Hi WARN"); gw_log (GW_LOG_ALL, "Msg", "Hi all, a"); gw_log (GW_LOG_STAT, "Msg", "Hi stat, a");