• 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
  • Ron McLeod
  • Paul Clapham
  • Jeanne Boyarsky
  • Liutauras Vilda
Sheriffs:
  • Tim Cooke
  • Bear Bibeault
  • paul wheaton
Saloon Keepers:
  • Carey Brown
  • Stephan van Hulst
  • Tim Holloway
  • Mikalai Zaikin
  • Piet Souris
Bartenders:

java.util.Logging configuration...

 
Ranch Hand
Posts: 624
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I've finally got fed up of the crappy inefficient "SystemOut" logging implemented by others around here and decided to overhaul ALL our logging with 'propper' java.util.Logging.

However, I'm getting confused about how to configure stuff to get what I want!

My code has sections like this:



with logging calls throughout that are like this:




At first this looked to be working ok... I was getting log files created for each of my various functional areas and they ARE being populated with the information. BUT - I have 2 problems:
1) The data is in XML format rather than just simple text, and
2) I get multiple versions of the log file (one for each calling class it seems)...

I looked at my logging.properties file in the following location that I assumed to be the relevant one for my local instance of WAS6 within my RAD6 IDE:
"C:\Program Files\IBM\Rational\SDP\6.0\runtimes\base_v6\java\jre\lib\logging.properties"

..and found that I already have file handlers configured (I think) to use the Simple formatter...

am I missing something - Is there a way I can get my logs to append rather than create new files?

 
Police line, do not cross. Well, this tiny ad can go through:
Low Tech Laboratory
https://www.kickstarter.com/projects/paulwheaton/low-tech-0
reply
    Bookmark Topic Watch Topic
  • New Topic