aboutsummaryrefslogtreecommitdiffstats
path: root/net/unbound.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2021-12-02 01:14:55 +0100
committerKim Alvefur <zash@zash.se>2021-12-02 01:14:55 +0100
commita3ea469ed9ebeab2c4db54712f0b8ace3f28e15f (patch)
tree73afa5f5b01ce5511adea6f669f1e707ae2fcb1e /net/unbound.lua
parent5797a3f65dd0ae2c8393b6992522fcfb34be2fc5 (diff)
downloadprosody-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.lua2
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";