From 1fe62b396027f0033c7e162218e81022e01612a1 Mon Sep 17 00:00:00 2001 From: AJ Kelly Date: Sat, 7 Jan 2012 18:14:05 -0600 Subject: [PATCH] silence 'switching section to' log thing in IniFile --- Themes/_fallback/Scripts/01 IniFile.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Themes/_fallback/Scripts/01 IniFile.lua b/Themes/_fallback/Scripts/01 IniFile.lua index 2bad1403db..9809ac25aa 100644 --- a/Themes/_fallback/Scripts/01 IniFile.lua +++ b/Themes/_fallback/Scripts/01 IniFile.lua @@ -74,7 +74,7 @@ IniFile = -- if this section doesn't exist, create it tbl[sec] = tbl[sec] and tbl[sec] or { } current = tbl[sec] - Warn( "Switching section to " .. sec ) + --Warn( "Switching section to " .. sec ) else local k, v = IniFile.StrToKeyVal( str ) if k and v then current[k] = v end