Author Topic: Disable logging  (Read 1830 times)

Offline LemonLake

  • byte
  • *
  • Posts: 13
    • View Profile
Disable logging
« 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
« Last Edit: October 03, 2013, 08:51:08 pm by LemonLake »

Offline EgonOlsen

  • Administrator
  • quad
  • *****
  • Posts: 12295
    • View Profile
    • http://www.jpct.net
Re: Disable logging
« Reply #1 on: October 03, 2013, 08:57:42 pm »
Yes

Code: [Select]
Logger.setLogLevel(Logger.LL_ONLY_ERRORS);

Offline LemonLake

  • byte
  • *
  • Posts: 13
    • View Profile
Re: Disable logging
« Reply #2 on: October 03, 2013, 08:59:35 pm »
Yes

Code: [Select]
Logger.setLogLevel(Logger.LL_ONLY_ERRORS);

Thanks!