** This is very important to do - only needs to be done once
All of my plugins will be updated over the next week
Once you update one of the plugins and enable debug logging in the plugin, it will create a BLDebug.ini file in your config folder
Here are the contents of this file:
============================================================ =================
PLEASE NOTE:
I made an error in creating the INI file and did not realize it until after. The MB in the key name is mislabeled. It should be in bytes.
Please DO NOT edit the keys in the INI file - they need to stay the same.
You will only have to change this ONCE.
So the actual file should be:
This will set the debug log max size to 500MB for Linux and 10GB for Windows
============================================================ =================
You can also set these values to any number of bytes you want and the next time you turn on debug logging in one of my plugins, the plugin will use these values for the max size of the debug logs.
All of my plugins will be updated over the next week
Once you update one of the plugins and enable debug logging in the plugin, it will create a BLDebug.ini file in your config folder
Here are the contents of this file:
Code:
[Settings] debugLogMaxSizeLinuxMB=500 debugLogMaxSizeWindowsMB=10000
PLEASE NOTE:
I made an error in creating the INI file and did not realize it until after. The MB in the key name is mislabeled. It should be in bytes.
Please DO NOT edit the keys in the INI file - they need to stay the same.
You will only have to change this ONCE.
So the actual file should be:
Code:
[Settings] debugLogMaxSizeLinuxMB=500000000 debugLogMaxSizeWindowsMB=10000000000
============================================================ =================
You can also set these values to any number of bytes you want and the next time you turn on debug logging in one of my plugins, the plugin will use these values for the max size of the debug logs.
Comment