Author Topic: Turn off jPCT output messages?  (Read 3879 times)

Offline Mr.Marbles

  • int
  • **
  • Posts: 81
    • View Profile
Turn off jPCT output messages?
« on: February 16, 2006, 02:36:34 pm »
Is there any way to turn off the output that gets generated while jPCT is initializing :?:  My application also prints output and it's sometimes tough to see with all the jPCT output on the screen.

Offline rolz

  • float
  • ****
  • Posts: 280
  • Technocrat
    • View Profile
Turn off jPCT output messages?
« Reply #1 on: February 16, 2006, 04:46:19 pm »
Logger.setLevel(-1);
Regards,
Andrei

Offline Mr.Marbles

  • int
  • **
  • Posts: 81
    • View Profile
Turn off jPCT output messages?
« Reply #2 on: February 16, 2006, 06:34:04 pm »
Thanks for the solution!

I don't see -1 as a constant in the Logger class though. I think I'll use Logger.LL_ONLY_ERRORS insted since I'd like to be notified of errors.