Regarding logging Vs ev_init
Submitted by jatinder on Tue, 2007-01-09 09:18.
Do I need to use ev_init in order to log the messages using
log server ( ref. csa111)?
/* Set up console redirection for demo purposes */
(void)ev_init(argc, argv, appName.value);

Jatinder,
As mentioned in the comments in the code ev_init was intended only for demo purposes.
If you look at the csa111 code there are printfs and logmsgs. ev_init redirects the console output(printfs).
The log messages written using logmsg are sent to the log files.
Thanks,
Hari