www.jpct.net

jPCT-AE - a 3d engine for Android => Support => Topic started by: LemonLake on October 03, 2013, 08:49:32 PM

Title: Disable logging
Post by: LemonLake on October 03, 2013, 08:49:32 PM
I have over a thousand objects in my scene, and JPCT logs about ten lines for each one upon creation. Is there any way to disable this? Thanks
Title: Re: Disable logging
Post by: EgonOlsen on October 03, 2013, 08:57:42 PM
Yes

Logger.setLogLevel(Logger.LL_ONLY_ERRORS);
Title: Re: Disable logging
Post by: LemonLake on October 03, 2013, 08:59:35 PM
Quote from: EgonOlsen on October 03, 2013, 08:57:42 PM
Yes

Logger.setLogLevel(Logger.LL_ONLY_ERRORS);

Thanks!