From 118aa28a11ea72e7a866e5d633819a242ff1801b Mon Sep 17 00:00:00 2001 From: Daniel-I-Am Date: Sun, 27 Sep 2020 12:32:05 +0200 Subject: [PATCH] Fix logging level of debug message --- .../LuaProgrammingLanguageInterpreter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ChaosBot/Services/ProgrammingLanguageInterpreter/LuaProgrammingLanguageInterpreter.cs b/ChaosBot/Services/ProgrammingLanguageInterpreter/LuaProgrammingLanguageInterpreter.cs index 2322e9b..0176800 100644 --- a/ChaosBot/Services/ProgrammingLanguageInterpreter/LuaProgrammingLanguageInterpreter.cs +++ b/ChaosBot/Services/ProgrammingLanguageInterpreter/LuaProgrammingLanguageInterpreter.cs @@ -25,7 +25,7 @@ namespace ChaosBot.Services.ProgrammingLanguageInterpreter _state.DebugHook += LuaDebugHook; MethodInfo printMethod = GetType().GetMethod("Print", BindingFlags.NonPublic | BindingFlags.Instance); - LoggingFacade.Info($"Overwriting print function with {printMethod}"); + LoggingFacade.Trace($"Overwriting print function with {printMethod}"); _state["print"] = _state.RegisterFunction("print", this, printMethod); LoggingFacade.Trace("Disabling Lua `import` function");