IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 9, 2004, 5:19:15 PM (22 years ago)
Author:
Paul Price
Message:

Doxygenation of Lupton stuff partially complete. Still need to hack some more to conform everything to coding standards.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/archive/pslib/include/psLogMsg.h

    r181 r196  
    33#include <stdarg.h>
    44
    5 enum { PS_LOG_ABORT = 0, PS_LOG_ERROR, PS_LOG_WARN, PS_LOG_INFO };
     5enum { PS_LOG_ABORT = 0, PS_LOG_ERROR, PS_LOG_WARN, PS_LOG_INFO }; //!< Status codes for log messages
    66
    7 enum { PS_LOG_TO_STDERR, PS_LOG_TO_STDOUT };
     7enum { PS_LOG_TO_STDERR, PS_LOG_TO_STDOUT }; //!< Destinations for log messages
    88
    9 int psSetLogDestination(int dest);
    10 int psSetLogLevel(int level);
    11 void psSetLogFormat(const char *fmt);
     9int psSetLogDestination(int dest);      //!< Sets the log destination
     10int psSetLogLevel(int level);           //!< Sets the log level
     11void psSetLogFormat(const char *fmt);   //!< sets the log format
    1212
    13 void psLogMsg(const char *name, int level, const char *fmt, ...);
    14 void p_psVLogMsg(const char *name, int level, const char *fmt, va_list ap);
     13void psLogMsg(const char *name, int level, const char *fmt, ...); //!< Logs a message
     14void p_psVLogMsg(const char *name, int level, const char *fmt, va_list ap); //!< Logs a message from varargs
    1515
    1616#endif
Note: See TracChangeset for help on using the changeset viewer.