www.jpct.net

jPCT - a 3d engine for Java => Support => Topic started by: Mr.Marbles on February 16, 2006, 02:36:34 pm

Title: Turn off jPCT output messages?
Post by: Mr.Marbles 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.
Title: Turn off jPCT output messages?
Post by: rolz on February 16, 2006, 04:46:19 pm
Logger.setLevel(-1);
Title: Turn off jPCT output messages?
Post by: Mr.Marbles 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.