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

Update the provided sample INI config file to include new options.

This commit is contained in:
Sandu Liviu Catalin 2016-08-25 23:56:00 +03:00
parent e02014088b
commit 1b7299c0aa

View File

@ -1,7 +1,10 @@
# Squirrel options # Squirrel options
[Squirrel] [Squirrel]
# Configure the virtual machine stack size
StackSize=2048 StackSize=2048
# Enable error handling by the plugin
ErrorHandling=true ErrorHandling=true
# Allow the plug-in to load even if no scripts were loaded
EmptyInit=false EmptyInit=false
# Logging options # Logging options
@ -23,6 +26,9 @@ LogFileFatal=true
ConsoleTimestamp=false ConsoleTimestamp=false
LogFileTimestamp=true LogFileTimestamp=true
#Filename=mymod%Y-%m-%d.log #Filename=mymod%Y-%m-%d.log
# How much to output to console at startup
# 0 minimal, 1 show more, 2 show even more, 3 show even more
VerbosityLevel=0
# List of scripts to load # List of scripts to load
# - Compile=path > Compile the script and execute after all scripts were compiled # - Compile=path > Compile the script and execute after all scripts were compiled