openlog method

void openlog(
  1. String ident,
  2. int logopt,
  3. int facility
)

Opens a connection to the system logger for a program.

Implementation

void openlog(String ident, int logopt, int facility) {
  _ident = ident;
}