diff options
author | Vsevolod Stakhov <vsevolod@rspamd.com> | 2024-06-28 15:03:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-28 15:03:30 +0100 |
commit | 943c3f2d2aef8329e6882f2bd66e6c30669730b8 (patch) | |
tree | c0a2a1679ab3288d9d935190a8c77c7d1991d833 /src/plugins | |
parent | c8aca13cd459ec4c06e2ad5a6fd6c09c9d85ca81 (diff) | |
download | rspamd-943c3f2d2aef8329e6882f2bd66e6c30669730b8.tar.gz rspamd-943c3f2d2aef8329e6882f2bd66e6c30669730b8.zip |
Update src/plugins/lua/gpt.lua
Co-authored-by: Andrew Lewis <nerf@judo.za.org>
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/lua/gpt.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/lua/gpt.lua b/src/plugins/lua/gpt.lua index dee83416d..3e3a6737d 100644 --- a/src/plugins/lua/gpt.lua +++ b/src/plugins/lua/gpt.lua @@ -189,7 +189,7 @@ local function openai_gpt_check(task) local ret, content = settings.condition(task) if not ret then - lua_util.info(N, task, "skip checking gpt as the condition is not met: %s", content) + rspamd_logger.info(task, "skip checking gpt as the condition is not met: %s", content) return end |