IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 18, 2004, 9:37:58 PM (22 years ago)
Author:
eugene
Message:

code cleanup for Doxygen support & readability

File:
1 edited

Legend:

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

    r247 r257  
    77 */
    88
     9/** Functions **************************************************************/
     10/** \addtogroup SystemGroup System Utilities
     11 *  \{
     12 */
     13
     14/// Sets the log destination
     15int psSetLogDestination(int dest);     
     16
     17/// Sets the log level
     18int psSetLogLevel(int level);           
     19
     20/// sets the log format
     21void psSetLogFormat(const char *fmt);   
     22
     23/// Logs a message
     24void psLogMsg(const char *name, int level, const char *fmt, ...);
     25
     26/// Logs a message from varargs
     27void p_psVLogMsg(const char *name, int level, const char *fmt, va_list ap);
     28
     29/* \} */ // End of SystemGroup Functions
     30
    931enum { PS_LOG_ABORT = 0, PS_LOG_ERROR, PS_LOG_WARN, PS_LOG_INFO }; //!< Status codes for log messages
    1032
    1133enum { PS_LOG_TO_STDERR, PS_LOG_TO_STDOUT }; //!< Destinations for log messages
    1234
    13 int psSetLogDestination(int dest);      //!< Sets the log destination
    14 int psSetLogLevel(int level);           //!< Sets the log level
    15 void psSetLogFormat(const char *fmt);   //!< sets the log format
    16 
    17 void psLogMsg(const char *name, int level, const char *fmt, ...); //!< Logs a message
    18 void p_psVLogMsg(const char *name, int level, const char *fmt, va_list ap); //!< Logs a message from varargs
    19 
    2035#endif
Note: See TracChangeset for help on using the changeset viewer.