IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Dec 17, 2006, 12:49:47 AM (20 years ago)
Author:
eugene
Message:

cleanup log messages

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psphot/src/psphotImageMedian.c

    r10553 r10801  
    199199        }
    200200    }
    201     psLogMsg ("psphot", 3, "build median image: %f sec\n", psTimerMark ("psphot"));
     201    psLogMsg ("psphot", PS_LOG_MINUTIA, "build median image: %f sec\n", psTimerMark ("psphot"));
    202202
    203203    // measure background stats and save for later output
     
    210210    psMetadataAdd (recipe, PS_LIST_TAIL, "SKY_NX",   PS_DATA_S32 | PS_META_REPLACE, "sky model size (x)",      nx);
    211211    psMetadataAdd (recipe, PS_LIST_TAIL, "SKY_NY",   PS_DATA_S32 | PS_META_REPLACE, "sky model size (y)",      ny);
    212     psLogMsg ("psphot", 3, "background sky : min %f mean %f max %f stdev %f", statsBck->min, statsBck->sampleMean, statsBck->max, statsBck->sampleStdev);
     212    psLogMsg ("psphot", PS_LOG_INFO, "background sky : min %f mean %f max %f stdev %f",
     213              statsBck->min, statsBck->sampleMean, statsBck->max, statsBck->sampleStdev);
    213214    psFree (statsBck);
    214215
     
    232233    // linear interpolation to full-scale
    233234    psImageUnbin (background->image, model->image, DX, DY, dx, dy);
    234     psLogMsg ("psphot", 3, "build resampled image: %f sec\n", psTimerMark ("psphot"));
     235    psLogMsg ("psphot", PS_LOG_MINUTIA, "build resampled image: %f sec\n", psTimerMark ("psphot"));
    235236
    236237    // back-sub image pixels, from output background file (don't create if not requested)
     
    267268# endif
    268269
    269     psLogMsg ("psphot", 3, "subtracted background model: %f sec\n", psTimerMark ("psphot"));
     270    psLogMsg ("psphot", PS_LOG_INFO, "subtracted background model: %f sec\n", psTimerMark ("psphot"));
    270271    psFree(stats);
    271272    psFree(rng);
Note: See TracChangeset for help on using the changeset viewer.