home *** CD-ROM | disk | FTP | other *** search
/ The CDPD Public Domain Collection for CDTV 4 / CDPD_IV.bin / networking / uucp / amigauucpsrc / include / log.h < prev    next >
C/C++ Source or Header  |  1994-06-29  |  327b  |  17 lines

  1.  
  2. /*
  3.  *  LOG.H
  4.  *
  5.  *  (C) Copyright 1989-1990 by Matthew Dillon,  All Rights Reserved.
  6.  */
  7.  
  8. extern int     LogToStdout;
  9. extern int     LogLevel;
  10. extern char    *LogProgram;
  11. extern char    *LogHost;
  12. extern char    *LogWho;
  13. extern char    *LogFile;
  14.  
  15. #define DEBUG(level, msg, moremsg)  if (LogLevel > level) printf(msg, moremsg)
  16.  
  17.