diff options
Diffstat (limited to 'src/lua/lua_common.c')
-rw-r--r-- | src/lua/lua_common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lua/lua_common.c b/src/lua/lua_common.c index 87474793c..482245ac9 100644 --- a/src/lua/lua_common.c +++ b/src/lua/lua_common.c @@ -2159,8 +2159,8 @@ rspamd_lua_run_config_post_init (lua_State *L, struct rspamd_config *cfg) rspamd_lua_setclass (L, "rspamd{config}", -1); if (lua_pcall (L, 1, 0, err_idx) != 0) { - msg_err_config ("cannot run config post init script: %s", - lua_tostring (L, -1)); + msg_err_config ("cannot run config post init script: %s; priority = %d", + lua_tostring (L, -1), sc->priority); } lua_settop (L, err_idx - 1); |