IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 11, 2004, 7:50:01 PM (22 years ago)
Author:
gusciora
Message:

cosmetics...

File:
1 edited

Legend:

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

    r979 r1013  
     1/** @file  psLogMsg.h
     2 *  @brief Procedures for logging messages.
     3 *  \ingroup LogTrace
     4 *
     5 *  This file will hold the prototypes for defining procedure which set
     6 *  message log levels, messahe log formats, message log destinations, and
     7 *  for generating the messages themselves.
     8 *  @ingroup LogTrace
     9 *
     10 *  @author Robert Lupton, Princeton University
     11 *  @author George Gusciora, MHPCC
     12 *
     13 *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2004-06-12 05:50:01 $
     15 *
     16 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     17 */
    118#if !defined(PS_LOG_MSG_H)
    219#define PS_LOG_MSG_H
    3 
    4 /** \file psLogMsg.h
    5  *  \brief log messaging facilities
    6  *  \ingroup LogTrace
    7  */
    8 
    920#include <stdarg.h>
    1021
     
    1829/// In future versions, this procedure will take a character string as an
    1930/// argument which can specify more general log destinations.
    20 int psLogSetDestination(int dest);
     31int psLogSetDestination(int dest     ///< Specifies where to send messages.
     32                       );
     33
    2134
    2235/// This procedure sets the message level for future log messages.  Subsequent
     
    2538/// Ie. higher values set by this procedure will cause more log messages to
    2639/// be displayed.
    27 int psLogSetLevel(int level);
     40int psLogSetLevel(int level          ///< Specifies the system log level
     41                 );
     42
    2843
    2944/// This procedure sets the log format for future log messages.  The argument
     
    3247/// Deleting a letter from the string will cause the associated information
    3348/// to not be logged.
    34 void psLogSetFormat(const char *fmt);
     49void psLogSetFormat(const char *fmt ///< Specifies the system log format
     50                   );
    3551
    3652
     
    4157void psLogMsg(const char *name,     ///< name of the log source
    4258              int myLevel,          ///< severity level of this log message
    43               const char *fmt, ...) ///< printf-style format command
    44 ;
    45 
     59              const char *fmt, ...  ///< printf-style format command
     60             );
    4661
    4762
     
    5166               int myLevel,      ///< severity level of this log message
    5267               const char *fmt,  ///< printf-style format command
    53                va_list ap)       ///< varargs argument list
    54 ;
    55 
     68               va_list ap        ///< varargs argument list
     69              );
    5670
    5771///< Status codes for log messages
Note: See TracChangeset for help on using the changeset viewer.