• 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

send server output to log file

 
Ranch Hand
Posts: 455
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi,

Can anyone tell me how to send the data that are printed on RAD (Rational Application Developer) to a log/txt file. My understanding is that RAD uses apache commons-logging as the wrapper class and it makes use of JDK14Logger to prining the log details on RAD console. Is is possible to configure the setting so that the log details will get printed on a file rather than displaying on the console window. I created a file named logging.properties and kept it in the server classpath

# logging.properties#
jdk handlershandlers=java.util.logging.ConsoleHandler java.util.logging.FileHandler
# default log level
.level=INFO
# log level for the "DEBUG" logger
DEBUG.level=FINE
# log file name for the FileHandler
java.util.logging.FileHandler.pattern=c:/app.log

but its still not working

Appretiate any comments / suggestions ..

Thanks,
Rajeev.
 
Rajeev Ravindran
Ranch Hand
Posts: 455
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i didnt look at the Admin Console.. The option was there to set it.. sorry guys !!
reply
    Bookmark Topic Watch Topic
  • New Topic