Help with console.log file
by Aisle 5 Games, Inc. · in Torque Game Builder · 10/07/2008 (9:24 pm) · 3 replies
Is there a way to keep the console.log file from being created? We have a distributior that considers it a debug log which they do not allow in their builds.
#2
anyway, if you get to know how to disable the creation of the log file, let us know, a lil bit of info wont hurt me.
10/14/2008 (7:38 pm)
Thats a sad thing to hear, since as we already know theres no way to deliver a bugfree software... and if you dont have that log, how do you detect what the problem is, and where, how and when it happened?...anyway, if you get to know how to disable the creation of the log file, let us know, a lil bit of info wont hurt me.
#3
Then in main.cs - change this line:
$logModeSpecified = false;
to
$logModeSpecified = true;
Then specify the log mode:
setlogmode(0); //"0" disables console.log creation
Also, make the console inaccessible to the player by unbinding the tilde:
GlobalActionMap.unbind(keyboard, tilde);
10/15/2008 (8:00 am)
Here is what our programmer came up with on how to disable the creation of the log file:Then in main.cs - change this line:
$logModeSpecified = false;
to
$logModeSpecified = true;
Then specify the log mode:
setlogmode(0); //"0" disables console.log creation
Also, make the console inaccessible to the player by unbinding the tilde:
GlobalActionMap.unbind(keyboard, tilde);
Associate David Montgomery-Blake
David MontgomeryBlake