From 08f1c3d90d1b519906b2865047742f77e0b13625 Mon Sep 17 00:00:00 2001 From: Victor Seva Date: Tue, 14 May 2013 16:53:29 +0200 Subject: [PATCH] set xavp log to dbg --- ngcp/xavp.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ngcp/xavp.lua b/ngcp/xavp.lua index bcf157e..10242fe 100644 --- a/ngcp/xavp.lua +++ b/ngcp/xavp.lua @@ -20,11 +20,11 @@ NGCPXAvp_MT = { return sr.pv.get(id) elseif type(value) == "number" then table.add(t.keys, key) - sr.log("info", string.format("seti: [%s]:%d", id, value)) + sr.log("dbg", string.format("seti: [%s]:%d", id, value)) sr.pv.seti(id, value) elseif type(value) == "string" then table.add(t.keys, key) - sr.log("info", string.format("sets: [%s]:%s", id, value)) + sr.log("dbg", string.format("sets: [%s]:%s", id, value)) sr.pv.sets(id, value) else error("value is not a number or string")