IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 4316 for trunk/psLib/src/sys


Ignore:
Timestamp:
Jun 17, 2005, 5:13:02 PM (21 years ago)
Author:
drobbin
Message:

* empty log message *

Location:
trunk/psLib/src/sys
Files:
2 edited

Legend:

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

    r4183 r4316  
    1212 *  @author GLG, MHPCC
    1313 *
    14  *  @version $Revision: 1.44 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2005-06-09 06:13:14 $
     14 *  @version $Revision: 1.45 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2005-06-18 03:13:02 $
    1616 *
    1717 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    363363   NULL
    364364 *****************************************************************************/
    365 void psLogMsg(const char *name, psS32 level, const char *fmt, ...)
     365void psLogMsg(const char *name, int level, const char *format, ...)
    366366{
    367367    va_list ap;
    368368
    369     va_start(ap, fmt);
    370     psLogMsgV(name, level, fmt, ap);
     369    va_start(ap, format);
     370    psLogMsgV(name, level, format, ap);
    371371    va_end(ap);
    372372}
  • trunk/psLib/src/sys/psLogMsg.h

    r4180 r4316  
    1111 *  @author GLG, MHPCC
    1212 *
    13  *  @version $Revision: 1.24 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2005-06-09 06:12:31 $
     13 *  @version $Revision: 1.25 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2005-06-18 03:13:02 $
    1515 *
    1616 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    6767void psLogMsg(
    6868    const char *name,                  ///< name of the log source
    69     psS32 myLevel,                       ///< severity level of this log message
    70     const char *fmt,                   ///< printf-style format command
     69    int level,                       ///< severity level of this log message
     70    const char *format,                   ///< printf-style format command
    7171    ...
    7272);
Note: See TracChangeset for help on using the changeset viewer.