IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 8245 for trunk/psLib/src/sys


Ignore:
Timestamp:
Aug 8, 2006, 4:26:44 PM (20 years ago)
Author:
jhoblitt
Message:

normalize psTrace() facility names

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

Legend:

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

    r8232 r8245  
    1111 *  @author GLG, MHPCC
    1212 *
    13  *  @version $Revision: 1.60 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2006-08-08 23:32:23 $
     13 *  @version $Revision: 1.61 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2006-08-09 02:26:44 $
    1515 *
    1616 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    172172    // XXX: If one must at least log error messages, why don't we set logMsg = true here?
    173173    if (!logMsg) {
    174         psTrace("utils.logMsg", 1, "You must at least log error messages (You chose \"%s\")", format);
     174        psTrace("psLib.sys", 1, "You must at least log error messages (You chose \"%s\")", format);
    175175
    176176    }
     
    293293
    294294    default:
    295         psTrace("utils.logMsg", 2, "Invalid logMsg level: %d (%s)\n", level, format);
     295        psTrace("psLib.sys", 2, "Invalid logMsg level: %d (%s)\n", level, format);
    296296        level = (level < 0) ? 0 : 9;
    297297        clevel = level + '0';
  • trunk/psLib/src/sys/psTrace.c

    r8244 r8245  
    99 *  @author GLG, MHPCC
    1010 *
    11  *  @version $Revision: 1.66 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2006-08-09 02:01:02 $
     11 *  @version $Revision: 1.67 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2006-08-09 02:26:44 $
    1313 *
    1414 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    525525        clevel = level + '0';
    526526    } else {
    527         psTrace("utils.logMsg", 2, "Invalid logMsg level: %d (%s)\n", level, format);
     527        psTrace("psLib.sys", 2, "Invalid logMsg level: %d (%s)\n", level, format);
    528528        level = (level < 0) ? 0 : 9;
    529529        clevel = level + '0';
     
    721721    // XXX: If one must at least log error messages, why don't we set logMsg = true here?
    722722    if (!traceMsg) {
    723         psTrace("utils.traceMsg", 1,
     723        psTrace("psLib.sys", 1,
    724724                "You must at least trace error messages (You chose \"%s\")", format);
    725725
Note: See TracChangeset for help on using the changeset viewer.