• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

[Log4j] Defining multiple loggers

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I have a project that uses Hibernate. I want ALL (=DEBUG) the logs (mine and those of Hibernate) sent to console and I want only the INFO logs of Hibernate sent to a file.
Can anyone help me with the log4j.properties file?

This is what I have, but isn't doing what I want:
 
drifter
Posts: 1364
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Well, you don't actually say what it is doing wrong. I can guess that you want to log ONLY info level not info level and above. (Your configuration specified info level and above).

As stated in the FAQ,


If you must filter events by exact level match, then you can attach a LevelMatchFilter
to any appender to filter out logging events by exact level match.



To use filters you should use the .xml configuration file instead of .properties.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic