Changeset 1202:f4b6ce0511e8

Show
Ignore:
Timestamp:
06/11/10 18:18:13 (3 years ago)
Author:
Thomas Gambet <tgambet@…>
Branch:
default
Message:

renamed init() to initUnicorn()

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/org/w3c/unicorn/Framework.java

    r1187 r1202  
    115115         * Initialize Unicorn 
    116116         */ 
    117         public static void init() { 
     117        public static void initUnicorn() { 
    118118                isUcnInitialized = false; 
    119119                reset(); 
     
    160160                        logger.info("OK - JVM parameter \"unicorn.home\" was found: " + unicornHome.getPath()); 
    161161                        logger.info("OK - Log4j successfully initialized"); 
    162                         logger.debug("> Used log4j.properties file: " + log4jPath); 
     162                        logger.debug("> Used log4j.xml file: " + log4jPath); 
    163163                } else { 
    164                         logger.warn("Log4j config file \"log4j.properties\" could not be found: " + log4jPath); 
     164                        logger.warn("Log4j config file \"log4j.xml\" could not be found: " + log4jPath); 
    165165                        logger.warn("Log4j will not be initialized"); 
    166166                } 
     
    636636                return mapOfTask.getDefaultTask(); 
    637637        } 
     638 
    638639}