IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

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

normalize psTrace() facility names

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/camera/pmHDU.c

    r7720 r8246  
    7878
    7979    // Move to the appropriate extension
    80     psTrace(__func__, 5, "Moving to extension %s...\n", hdu->extname);
     80    psTrace("psModules.camera", 5, "Moving to extension %s...\n", hdu->extname);
    8181    if (!hduMove(hdu, fits)) {
    8282        return false;
     
    8484
    8585    if (!hdu->header) {
    86         psTrace(__func__, 5, "Reading the header...\n");
     86        psTrace("psModules.camera", 5, "Reading the header...\n");
    8787        hdu->header = psFitsReadHeader(NULL, fits);
    8888        if (! hdu->header) {
     
    122122            psFree(hdu->images);        // Blow away anything existing
    123123        }
    124         psTrace(__func__, 5, "Reading the pixels...\n");
     124        psTrace("psModules.camera", 5, "Reading the pixels...\n");
    125125        hdu->images = psFitsReadImageCube(fits, psRegionSet(0,0,0,0));
    126126        if (! hdu->images) {
     
    155155    PS_ASSERT_PTR_NON_NULL(fits, false);
    156156
    157     psTrace(__func__, 7, "Writing HDU %s\n", hdu->extname);
     157    psTrace("psModules.camera", 7, "Writing HDU %s\n", hdu->extname);
    158158
    159159    if (hdu->images && hdu->table && !hdu->header) {
     
    199199
    200200    if (hdu->images) {
    201         psTrace(__func__, 9, "Writing pixels for %s\n", hdu->extname);
     201        psTrace("psModules.camera", 9, "Writing pixels for %s\n", hdu->extname);
    202202        if (!psFitsWriteImageCube(fits, hdu->header, hdu->images, extname)) {
    203203            psError(PS_ERR_IO, false, "Unable to write image to extension %s\n", hdu->extname);
Note: See TracChangeset for help on using the changeset viewer.