IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 8245 for trunk/psLib/src/types


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

normalize psTrace() facility names

Location:
trunk/psLib/src/types
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/types/psArguments.c

    r8232 r8245  
    77 *  @author David Robbins, MHPCC
    88 *
    9  *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2006-08-08 23:32:23 $
     9 *  @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2006-08-09 02:26:44 $
    1111 *
    1212 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    156156
    157157    for (int i = 1; i < *argc; i++) {
    158         psTrace(__func__, 7, "Looking at %s\n", argv[i]);
     158        psTrace("psLib.types", 7, "Looking at %s\n", argv[i]);
    159159        psMetadataItem *argItem = psMetadataLookup(arguments, argv[i]);
    160160        if (argItem) {
  • trunk/psLib/src/types/psHash.c

    r8232 r8245  
    1212*  @author GLG, MHPCC
    1313*
    14 *  @version $Revision: 1.27 $ $Name: not supported by cvs2svn $
    15 *  @date $Date: 2006-08-08 23:32:23 $
     14*  @version $Revision: 1.28 $ $Name: not supported by cvs2svn $
     15*  @date $Date: 2006-08-09 02:26:44 $
    1616*
    1717*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    148148    table->n = nalloc;
    149149
    150     psTrace("utils.hash", 1, "Creating %d-element hash table\n", nalloc);
     150    psTrace("psLib.types", 1, "Creating %d-element hash table\n", nalloc);
    151151
    152152    // Initialize all buckets to NULL.
     
    321321                // We have found this key in the hash table.
    322322
    323                 psTrace("utils.hash.insert", 3, "Replacing data for %s\n", key);
     323                psTrace("psLib.types", 3, "Replacing data for %s\n", key);
    324324
    325325                // NOTE: I have changed this behavior from the originally
  • trunk/psLib/src/types/psMetadata.c

    r8232 r8245  
    1212 *  @author Ross Harman, MHPCC
    1313 *
    14  *  @version $Revision: 1.121 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2006-08-08 23:32:23 $
     14 *  @version $Revision: 1.122 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2006-08-09 02:26:44 $
    1616 *
    1717 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    445445        unsigned int flag = PS_META_REPLACE; // Flag to indicate MULTI; otherwise, replace
    446446        if (multiCheckItem->type == PS_DATA_METADATA_MULTI) {
    447             psTrace(__func__, 10, "MULTI: %s (%s)\n", inItem->name, inItem->comment);
     447            psTrace("psLib.types", 10, "MULTI: %s (%s)\n", inItem->name, inItem->comment);
    448448            flag = PS_META_DUPLICATE_OK;
    449449        }
    450         psTrace(__func__, 5, "Copying %s (%s)...\n", inItem->name, inItem->comment);
     450        psTrace("psLib.types", 5, "Copying %s (%s)...\n", inItem->name, inItem->comment);
    451451
    452452        // Copy the item and add it on
  • trunk/psLib/src/types/psMetadataItemCompare.c

    r8224 r8245  
    6767            return false;
    6868        }
    69         psTrace(__func__, 10, "Comparing '%s' with '%s'\n", compare->data.V, template->
     69        psTrace("psLib.types", 10, "Comparing '%s' with '%s'\n", compare->data.V, template->
    7070                data.V);
    7171        return (strcasecmp(compare->data.V, template->
Note: See TracChangeset for help on using the changeset viewer.