Changeset 4543


Ignore:
Timestamp:
Feb 10, 2014, 8:41:01 AM (10 years ago)
Author:
olle
Message:

Refs #823. Loading of connection property values in class/file core/Application.java in api/core/ updated:

  1. Private static method String fetchProperty(Properties pf, String property, boolean replaceEmptyStringWithNull) updated to use log.info() calls for logging output, instead of log.debug().
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/api/core/src/org/proteios/core/Application.java

    r4542 r4543  
    990990        value = pf.getProperty(property);
    991991        // Note: The output below is printed when running update.sh during installation
    992         log.debug("Property " + property + " fetched from properties file.");
     992        log.info("Property " + property + " fetched from properties file.");
    993993      }
    994994      else
     
    997997        value = System.getProperty(property);
    998998        // Note: The output below is printed when running update.sh during installation
    999         log.debug("Property " + property + " fetched from system properties.");
     999        log.info("Property " + property + " fetched from system properties.");
    10001000      }
    10011001      // Optional replacement of empty string with null
Note: See TracChangeset for help on using the changeset viewer.