IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 7525


Ignore:
Timestamp:
Jun 12, 2006, 11:05:31 AM (20 years ago)
Author:
magnier
Message:

changed errors to traces for situations which are not errors

File:
1 edited

Legend:

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

    r7499 r7525  
    364364    case PM_FPA_FILE_PSF:
    365365    case PM_FPA_FILE_JPEG:
    366         psTrace ("pmFPAfile", 5, "not opening %s (type: %d)\n", file->filename, file->type);
     366        psTrace ("pmFPAfile", 5, "defer opening %s\n", file->filename);
    367367        break;
    368368
     
    802802    pmFPAfile *file = psMetadataLookupPtr (&status, files, name);
    803803    if (!status) {
    804         psError(PS_ERR_IO, true, "Failed to lookup %s", name);
    805         return false;
     804        psTrace("pmFPAfile", 6, "Internal File %s not in file list", name);
     805        return true;
    806806    }
    807807    if (file == NULL) {
     
    809809        return false;
    810810    }
    811 
    812811    if (file->mode != PM_FPA_MODE_INTERNAL) {
    813         psError(PS_ERR_IO, true, "File %s has mode %d != PM_FPA_MODE_INTERNAL", name, file->mode);
    814         return false;
     812        psTrace("pmFPAfile", 6, "FPA File %s not Internal, not dropping", name);
     813        return true;
    815814    }
    816815
Note: See TracChangeset for help on using the changeset viewer.