IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 5, 2009, 11:13:29 AM (17 years ago)
Author:
beaumont
Message:

Finished ppStack visualization. Unified the way in which visualizations are invoked, plotting windows are closed, etc

Location:
branches/cnb_branches/cnb_branch_20090215
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/cnb_branches/cnb_branch_20090215

  • branches/cnb_branches/cnb_branch_20090215/psLib/src/fits/psFitsHeader.c

    r21028 r23197  
    666666                break;
    667667              default:  // all other META types are ignored
    668                 psWarning("Attempt to write metadata %s of type %x to FITS header ignored.\n",
    669 item->name, item->type);
    670                 break;
     668                psError(PS_ERR_IO, true,
     669                        "Unable to write metadata item %s of type %x to FITS header",
     670                        item->name, item->type);
     671                return false;
    671672            }
    672673        }
     
    675676            char fitsErr[MAX_STRING_LENGTH];
    676677            (void)fits_get_errstatus(status, fitsErr);
    677             psError(PS_ERR_IO, true, _("Could not write data to file. CFITSIO Error: %s"), fitsErr);
     678            psError(PS_ERR_IO, true,
     679                    _("Could not write metadata item %s of type %x to FITS header.\nCFITSIO Error: %s"),
     680                    item->name, item->type, fitsErr);
    678681            return false;
    679682        }
Note: See TracChangeset for help on using the changeset viewer.