diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-10-16 09:10:26 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-10-16 09:10:26 +0100 |
commit | e75992bf3340fdf3e9c9a9787ab19d1e1dd37cc3 (patch) | |
tree | 683e9919d2174527778a62c4eeb824136560f33c /src/plugins | |
parent | 7504bb3cf42650c8e01121816e02d5ea10a171a3 (diff) | |
download | rspamd-e75992bf3340fdf3e9c9a9787ab19d1e1dd37cc3.tar.gz rspamd-e75992bf3340fdf3e9c9a9787ab19d1e1dd37cc3.zip |
[Minor] Another log invocation fixed
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/lua/arc.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/lua/arc.lua b/src/plugins/lua/arc.lua index eeae65289..e066613e9 100644 --- a/src/plugins/lua/arc.lua +++ b/src/plugins/lua/arc.lua @@ -591,7 +591,7 @@ local function arc_signing_cb(task) if err and err == 'No such file or directory' then lua_util.debugm(N, task, 'cannot read key from %s: %s', p.key, err) else - rspamd_logger.warnx(N, task, 'cannot read key from %s: %s', p.key, err) + rspamd_logger.warnx(task, 'cannot read key from %s: %s', p.key, err) end return false end |