Reduce log levels (#43)

This commit is contained in:
Brandon Sturgeon 2023-01-12 18:05:18 -08:00 committed by GitHub
parent e260aeadaa
commit def1cd8b4a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -127,7 +127,7 @@ end
function storage:PlayerInit( ply, sessionStart, callback )
local steamID = ply:SteamID64()
logger:info( "Receiving PlayerInit call for: " .. tostring( steamID ) )
logger:debug( "Receiving PlayerInit call for: " .. tostring( steamID ) )
local transaction = storage:InitTransaction()
local newUser = self:Prepare( "newUser", nil, steamID )

View File

@ -43,7 +43,7 @@ end
function storage:PlayerInit( ply, sessionStart, callback )
local steamID = ply:SteamID64()
logger:info( "Receiving PlayerInit call for: " .. tostring( steamID ) )
logger:debug( "Receiving PlayerInit call for: " .. tostring( steamID ) )
sql.Begin()