diff options
author | Kim Alvefur <zash@zash.se> | 2021-12-02 01:14:55 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2021-12-02 01:14:55 +0100 |
commit | a3ea469ed9ebeab2c4db54712f0b8ace3f28e15f (patch) | |
tree | 73afa5f5b01ce5511adea6f669f1e707ae2fcb1e /net/unbound.lua | |
parent | 5797a3f65dd0ae2c8393b6992522fcfb34be2fc5 (diff) | |
download | prosody-a3ea469ed9ebeab2c4db54712f0b8ace3f28e15f.tar.gz prosody-a3ea469ed9ebeab2c4db54712f0b8ace3f28e15f.zip |
util.id: Adjust entropy levels, with rationales
Modules using ids for logging should not need the now pretty large
medium one.
Diffstat (limited to 'net/unbound.lua')
-rw-r--r-- | net/unbound.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/unbound.lua b/net/unbound.lua index 22b0614b..4a6f0241 100644 --- a/net/unbound.lua +++ b/net/unbound.lua @@ -18,7 +18,7 @@ local log = logger.init("unbound"); local net_server = require "net.server"; local libunbound = require"lunbound"; local promise = require"util.promise"; -local new_id = require "util.id".medium; +local new_id = require "util.id".short; local gettime = require"socket".gettime; local dns_utils = require"util.dns"; |