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

How do I disable logging?

Fisher67

Member
Joined
Jan 27, 2016
Messages
229
Reaction score
6
Getting clogged up with hundreds of megabytes of logs:

CWEZ7qe.png


Here are my current advanced settings:

XfCG1bl.png
 
Troubled me too and I did a search in files to solve this.
Comment 4 lines contain "Logger.LogSpecial" out in Trinity\Framework\Actors\CachedItem.cs and the these logs never show up again.
Code:
//Logger.LogSpecial(() => $"{Name} is no longer valid or is disposed. (Ann={AnnId} ACDid={AcdId})");
I guess this logging is for testers' goods. Stable releases don't spam users with logging.
 
Last edited:
Troubled me too and I did a search in files to solve this.
Comment 4 lines contain "Logger.LogSpecial" out in Trinity\Framework\Actors\CachedItem.cs and the these logs never show up again.
Code:
//Logger.LogSpecial(() => $"{Name} is no longer valid or is disposed. (Ann={AnnId} ACDid={AcdId})");
I guess this logging is for testers' goods. Stable releases don't spam users with logging.
Thank you. :)
 
Yes its for forcing spam on test versions.

Plugin.cs
Code:
        public const bool IsDeveloperLoggingEnabled = true;
 
Back
Top