IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 9, 2004, 12:44:25 PM (22 years ago)
Author:
desonia
Message:

fixed some stupid indent-induced formating problems and added doxygen
comments.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/sys/psLogMsg.h

    r1407 r1426  
    1212 *  @author George Gusciora, MHPCC
    1313 *
    14  *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2004-08-07 00:06:06 $
     14 *  @version $Revision: 1.14 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2004-08-09 22:44:25 $
    1616 *
    1717 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    3030/// In future versions, this procedure will take a character string as an
    3131/// argument which can specify more general log destinations.
    32 int psLogSetDestination(const char *dest        // /< Specifies where to send messages.
     32int psLogSetDestination(const char *dest        ///< Specifies where to send messages.
    3333                       );
    3434
     
    3838/// Ie. higher values set by this procedure will cause more log messages to
    3939/// be displayed.
    40 int psLogSetLevel(int level     // /< Specifies the system log level
     40int psLogSetLevel(int level     ///< Specifies the system log level
    4141                 );
    4242
     
    4646/// Deleting a letter from the string will cause the associated information
    4747/// to not be logged.
    48 void psLogSetFormat(const char *fmt     // /< Specifies the system log format
     48void psLogSetFormat(const char *fmt     ///< Specifies the system log format
    4949                   );
    5050
     
    5353/// specified by a prior call to psLogSetLevel().  The message is specified
    5454/// with a printf-stype string an arguments.
    55 void psLogMsg(const char *name, // /< name of the log source
    56               int myLevel,      // /< severity level of this log message
    57               const char *fmt, ...      // /< printf-style format command
     55void psLogMsg(const char *name, ///< name of the log source
     56              int myLevel,      ///< severity level of this log message
     57              const char *fmt, ...      ///< printf-style format command
    5858             );
    5959
    6060/// This procedure is functionally equivalent to psLogMsg(), except that
    6161/// it takes a va_list as the message parameter, not a printf-style string.
    62 void psLogMsgV(const char *name,        // /< name of the log source
    63                int myLevel,     // /< severity level of this log message
    64                const char *fmt, // /< printf-style format command
    65                va_list ap       // /< varargs argument list
     62void psLogMsgV(const char *name,        ///< name of the log source
     63               int myLevel,     ///< severity level of this log message
     64               const char *fmt, ///< printf-style format command
     65               va_list ap       ///< varargs argument list
    6666              );
    6767
Note: See TracChangeset for help on using the changeset viewer.