Game Development Community


#1
09/23/2007 (6:34 pm)
What about making console.log read-only?
#2
09/23/2007 (10:11 pm)
Yes , i works . But i want this file to disappear from my example folder. Do you know if there is some instruction which disable creating a log file?
#3
09/24/2007 (1:44 am)
Calling the demo: torquedemo -log 0 does not generate the log.

This is done in main.cs, and the instruction to not generate the log is: setLogMode(0)

Replacing the two setLogMode(...) with setLogMode(0) will be a quick and dirty solution.

Sorry for my bad english.
#4
09/24/2007 (10:26 am)
Dont' worry about you english. It's perfect. Your post is very useful. Thanks you for that.
#5
10/02/2007 (5:20 am)
Yeah, find setLogMode() in your main.cs file (or whatever you are using), and make it setLogMode(0). That will disable logging.