diff options
author | Kim Alvefur <zash@zash.se> | 2022-06-30 17:03:50 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2022-06-30 17:03:50 +0200 |
commit | 5393bff075e8ff9edefe0752dffbc3e15a8bc773 (patch) | |
tree | 41d2d0e96ee19a64b727d0bc446d9ce2612d8064 /util | |
parent | b1c7b93139f52acd11ac22494b06a3678135ffdc (diff) | |
download | prosody-5393bff075e8ff9edefe0752dffbc3e15a8bc773.tar.gz prosody-5393bff075e8ff9edefe0752dffbc3e15a8bc773.zip |
util.dependencies: Deprecate support for Lua 5.1, this is your final warning
Diffstat (limited to 'util')
-rw-r--r-- | util/dependencies.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/dependencies.lua b/util/dependencies.lua index d7836404..7ecbf797 100644 --- a/util/dependencies.lua +++ b/util/dependencies.lua @@ -155,7 +155,7 @@ local function log_warnings() if _VERSION > "Lua 5.4" then prosody.log("warn", "Support for %s is experimental, please report any issues", _VERSION); elseif _VERSION < "Lua 5.2" then - prosody.log("warn", "%s has several issues and support is being phased out, consider upgrading", _VERSION); + prosody.log("warn", "%s support is deprecated, upgrade as soon as possible", _VERSION); end local ssl = softreq"ssl"; if ssl then |