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");