1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 08:47:17 +01:00

Disable debug logging by default.

This commit is contained in:
Sandu Liviu Catalin 2016-05-24 07:34:41 +03:00
parent f8e845ebd2
commit 4d21f29e7f

View File

@ -1,17 +1,19 @@
# Squirrel options
[Squirrel] [Squirrel]
StackSize=2048 StackSize=2048
ErrorHandling=true ErrorHandling=true
EmptyInit=false EmptyInit=false
# Logging options
[Log] [Log]
ConsoleDebug=true ConsoleDebug=false
ConsoleUser=true ConsoleUser=true
ConsoleSuccess=true ConsoleSuccess=true
ConsoleInfo=true ConsoleInfo=true
ConsoleWarning=true ConsoleWarning=true
ConsoleError=true ConsoleError=true
ConsoleFatal=true ConsoleFatal=true
LogFileDebug=true LogFileDebug=false
LogFileUser=true LogFileUser=true
LogFileSuccess=true LogFileSuccess=true
LogFileInfo=true LogFileInfo=true
@ -22,8 +24,10 @@ ConsoleTimestamp=false
LogFileTimestamp=true LogFileTimestamp=true
#Filename=mymod.log #Filename=mymod.log
# List of scripts to load
[Scripts] [Scripts]
Source=bootstrap.nut Source=bootstrap.nut
# Custom script options
[Options] [Options]
MyOption="Hello from config!" MyOption="Hello from config!"