From 004b27a2ef9b6d410f2ec3a0661ace520861d460 Mon Sep 17 00:00:00 2001 From: Jeremy Stanley Date: Sat, 29 Jul 2017 14:53:36 +0000 Subject: [PATCH] Reduce the log message priority for reload calls It's important to log when the "reload" command is issued, but it's not an error condition. Log the event at priority 6 rather than 8. --- mudpy/misc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mudpy/misc.py b/mudpy/misc.py index 59bef18..485f470 100644 --- a/mudpy/misc.py +++ b/mudpy/misc.py @@ -1892,7 +1892,7 @@ def command_reload(actor): log( "User " + actor.owner.account.get("name") + " reloaded the world.", - 8 + 6 ) # set a flag to reload -- 2.11.0