FACT++  1.0
bool checkLogLevel ( int  event)

Definition at line 1653 of file feeserver.c.

Referenced by createLogMessage().

1653  {
1654  // Comparision with binary AND, if result has 1 as any digit, event is
1655  // included in current logLevel
1656  if ((logLevel & event) != 0) {
1657  return true;
1658  }
1659  return false;
1660 }
static unsigned int logLevel
Definition: feeserver.c:211

+ Here is the caller graph for this function: