Next: Database API
Up: Logging/Debug system
Previous: log/debug facilities
During new terminal session creation, you should register socket descriptor
of this session with this system by use call:
-
- ::logTermSystem->add(<socket handler>);
It means, that logging system will have information for output to
terminal. Also when you close terminal session, do not forget call:
-
- ::logTermSystem->del(<socket handler>);
This system periodic checks list of messages and if any created entry
require present facility, than it send this string to socket. To require
any facility you can use call:
-
- ::logTermSystem->add_debug_fc(<socket handler>,<facility number>);
For close output of special facility use:
-
- ::logTermSystem->del_debug_fc(<socket handler>,<facility number>);
2005-07-21