Changeset 15330


Ignore:
Timestamp:
2008-05-02T11:43:37+12:00 (16 years ago)
Author:
oranfry
Message:

more output so for error diagnosis

Location:
release-kits/shared/ant-installer
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • release-kits/shared/ant-installer/src/org/tp23/antinstaller/runtime/ConfigurationLoader.java

    r14982 r15330  
    9595   
    9696    public int validate() throws IOException, ConfigurationException, InstallException{
     97        System.out.println( "get pages" );
    9798        Page[] pages = installer.getPages();
    9899        boolean foundErrors = false;
     
    102103        Set pagePropertyNames = null;
    103104       
    104         if(validateInstallerAttributes()){
     105        System.out.println( "validate attributes" );
     106        if( validateInstallerAttributes() ){
     107            System.out.println( "(validate attributes returned true)" );
    105108            foundErrors = true;
    106109        }
  • release-kits/shared/ant-installer/src_ext/org/tp23/antinstaller/taskdefs/Installer.java

    r15210 r15330  
    325325        int ret = 1;
    326326        try {
     327            log("reading config...");
     328            ConfigurationLoader configurationLoader = new ConfigurationLoader();
     329            configurationLoader.readConfig(installConfig.getParentFile(), installConfig.getName());
    327330            log("validating config...");
    328             ConfigurationLoader configurationLoader = new ConfigurationLoader();
    329             configurationLoader.readConfig(installConfig.getParentFile(), installConfig.getName());
    330331            ret = configurationLoader.validate();
    331             laf = configurationLoader.getInstaller().getLookAndFeel();
     332            laf = configurationLoader.getInstaller().getLookAndFeel();
    332333            if(ret != 0){
    333334                err();
Note: See TracChangeset for help on using the changeset viewer.