moved files and added compile script

This commit is contained in:
2024-09-28 17:10:07 +02:00
parent bb5d150f94
commit 9bc6e4890d
5 changed files with 11 additions and 49 deletions
+4 -5
View File
@@ -120,8 +120,7 @@
]] --
local dbLogger = Spearhead.LoggerTemplate:new("database", Spearhead.config.logLevel)
local dbLogger = Spearhead.LoggerTemplate:new("database", Spearhead.LoggerTemplate.LogLevelOptions.INFO)
local databaseManager = Spearhead.DB:new(dbLogger)
local capConfig = {
@@ -133,12 +132,12 @@ local capConfig = {
minDurationOnStation = 1800,
maxDurationOnStation = 2700,
rearmDelay = 600,
deathDelay = 1800
deathDelay = 1800,
logLevel = Spearhead.LoggerTemplate.LogLevelOptions.INFO
}
local stageConfig = {
preActivatedStages = 3,
capActiveStages = 4
logLevel = Spearhead.LoggerTemplate.LogLevelOptions.INFO
}
Spearhead.internal.GlobalCapManager.start(databaseManager, capConfig, stageConfig)