1/*
2 * Control how IrDAlog.c is compiled
3 *
4 */
5
6#include "IrDADebugging.h"          // uses hasTracing from here.  If hasTracing = 0, no logging at all
7
8#define USE_IOLOG   0               // true if want to go to IOLog
9#define IOSLEEPTIME 25              // ms delay after each IOLog
10
11#define kEntryCount (30*1024)               // Number of log entries.   *** Change to runtime alloc?
12#define kMaxModuleNames     50              // max number of clients (unique module names)
13#define kMaxModuleNameLen   32              // max length of module name
14#define kMaxIndex           500             // max event index (# of msgs) per module
15#define kMsgBufSize     (20*1024)           // way overkill -- 20k for copies of msgs
16