# /** # * '$rcsfile: log4j.properties,v $' # * copyright: 2002 regents of the university of california and the # * national center for ecological analysis and synthesis # * '$author: brooke $' # * '$date: 2003/06/24 00:58:49 $' # * '$revision: 1.1 $' # * # * this program is free software; you can redistribute it and/or modify # * it under the terms of the gnu general public license as published by # * the free software foundation; either version 2 of the license, or # * (at your option) any later version. # * # * this program is distributed in the hope that it will be useful, # * but without any warranty; without even the implied warranty of # * merchantability or fitness for a particular purpose. see the # * gnu general public license for more details. # * # * you should have received a copy of the gnu general public license # * along with this program; if not, write to the free software # * foundation, inc., 59 temple place, suite 330, boston, ma 02111-1307 usa # */ # # ################################################################################ ################################################################################ # # for conversion/formatting characters, see: # # http://logging.apache.org/log4j/docs/api/org/apache/log4j/PatternLayout.html # ################################################################################ ################################################################################ # log4j.threshold=ALL log4j.rootLogger=ALL, stdout ### LOGGING TO CONSOLE ######################################################### log4j.appender.stdout=org.apache.log4j.ConsoleAppender log4j.appender.stdout.layout=org.apache.log4j.PatternLayout log4j.appender.stdout.layout.ConversionPattern=%c: [%p]: %m [Thread: %t]%n ################################################################################ # EXAMPLE: Print only messages of level WARN or above in the package com.foo: # log4j.logger.com.foo=WARN log4j.logger.edu.ucsb.nceas=DEBUG