java/sql-dk/src/info/globalcode/sql/dk/logging/LoggerInitializer.java
branchv_0
changeset 55 f5ed7c4efacc
child 57 a736c3917946
equal deleted inserted replaced
54:53020d0bd2e4 55:f5ed7c4efacc
       
     1 /**
       
     2  * SQL-DK
       
     3  * Copyright © 2013 František Kučera (frantovo.cz)
       
     4  *
       
     5  * This program is free software: you can redistribute it and/or modify
       
     6  * it under the terms of the GNU General Public License as published by
       
     7  * the Free Software Foundation, either version 3 of the License, or
       
     8  * (at your option) any later version.
       
     9  *
       
    10  * This program is distributed in the hope that it will be useful,
       
    11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
       
    13  * GNU General Public License for more details.
       
    14  *
       
    15  * You should have received a copy of the GNU General Public License
       
    16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
       
    17  */
       
    18 package info.globalcode.sql.dk.logging;
       
    19 
       
    20 import info.globalcode.sql.dk.Constants;
       
    21 import java.util.logging.ConsoleHandler;
       
    22 import java.util.logging.Level;
       
    23 import java.util.logging.Logger;
       
    24 
       
    25 /**
       
    26  * Configures logging subsystem.
       
    27  * Usage: java -Djava.util.logging.config.class=info.globalcode.sql.dk.logging.LoggerInitializer …
       
    28  *
       
    29  * @author Ing. František Kučera (frantovo.cz)
       
    30  */
       
    31 public class LoggerInitializer {
       
    32 
       
    33 	public LoggerInitializer() {
       
    34 		Logger logger = Logger.getLogger(Constants.JAVA_PACKAGE);
       
    35 		ConsoleHandler handler = new ConsoleHandler();
       
    36 		ColorfulConsoleFormatter formatter = new ColorfulConsoleFormatter();
       
    37 
       
    38 		logger.addHandler(handler);
       
    39 		handler.setFormatter(formatter);
       
    40 
       
    41 		handler.setLevel(Level.FINE);
       
    42 		logger.setLevel(Level.FINE);
       
    43 
       
    44 
       
    45 		/**
       
    46 		 * TODO: FileHandler – detailed logs in file in ~/sql-dk/log/…
       
    47 		 */
       
    48 	}
       
    49 }