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

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Buddywing logging

Ill-Emperor-llI

New Member
Joined
Sep 19, 2014
Messages
19
Greetings. Ive browsed through many of the CS files but I can't seem to find options for logging frequency. I believe its on a diagnostic mode but I would love less garbage slowing down the bot on overnight runs. My guess is that the logging cache gets too big, but im a bit new so Im all ears.
 
Greetings. Ive browsed through many of the CS files but I can't seem to find options for logging frequency. I believe its on a diagnostic mode but I would love less garbage slowing down the bot on overnight runs. My guess is that the logging cache gets too big, but im a bit new so Im all ears.

You can't influence what gets written to te log file, only what gets shown in the actual bot window. Reason being, most of the time, we need all the information in the logs to diagnose any problems.
 
Per the enormous log files, I always start BW using the following batch file:

Code:
set folder="[COLOR="#FF0000"]C:\Games\BuddyWing\Logs[/COLOR]"
cd /d %folder%
for /F "delims=" %%i in ('dir /b') do (del "%%i" /s/q)
set folder="[COLOR="#FF0000"]C:\Games\BuddyWing[/COLOR]"
cd /d %folder%
Start [COLOR="#FF0000"]C:\Games\BuddyWing\BuddyWing.exe[/COLOR]
Exit

In a nutshell, this moves to your Logs folder, deletes all previous logs, then returns to your regular BW folder and starts the bot. You would just need to replace the red text with your actual BW file locations and then save it as a .BAT file.

Cheers,
-D
 
Back
Top