From f0b03262c0379a1855657bbfa697749c59954a52 Mon Sep 17 00:00:00 2001 From: Kyle Evans Date: Tue, 13 Mar 2018 02:59:13 +0000 Subject: [PATCH] lualoader: Sprinkle some verbose_loading salt Our module loading messages should be hidden without verbose_loading -- go ahead and do that as a first step. --- stand/lua/config.lua | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/stand/lua/config.lua b/stand/lua/config.lua index cd0d02592652..f236817f3053 100644 --- a/stand/lua/config.lua +++ b/stand/lua/config.lua @@ -197,6 +197,7 @@ end config.env_changed = {} -- Values to restore env to (nil to unset) config.env_restore = {} +config.verbose = false -- The first item in every carousel is always the default item. function config.getCarouselIndex(id) @@ -490,6 +491,11 @@ function config.load(file) -- Cache the provided module_path at load time for later use config.module_path = loader.getenv("module_path") + local verbose = loader.getenv("verbose_loading") + if verbose == nil then + verbose = "no" + end + config.verbose = verbose:lower() == "yes" end -- Reload configuration @@ -512,7 +518,7 @@ function config.loadelf() end print(MSG_MODLOADING) - if not config.loadmod(modules) then + if not config.loadmod(modules, not config.verbose) then print(MSG_MODLOADFAIL) end end