What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Stable build, can we have a 'disable all logging'

WhereIsMyMind

Member
Joined
Oct 12, 2013
Messages
848
Reaction score
5
Hi PushEDX,

As per subject. I can understand this being not allowed with the BETA but for stable?
I think it helps having as few writes to the HDD (yes, i should get another SDD) as possible.

WIMM
 
If you'd like to disable all logging you can execute the following code (Dev Tab/Routine/Plugin)

Code:
Logger.ChangeLogFilterLevel(Level.Off, Level.Off);

You will need to reference the following to access the Level enum:
Code:
using log4net.Core;

To re-enable default logging, you can execute the following code:
Code:
Logger.ChangeLogFilterLevel(Level.All, Level.Emergency);
 
Back
Top