diff options
| author | Quentin Young <qlyoung@nvidia.com> | 2020-11-30 20:12:11 -0500 | 
|---|---|---|
| committer | Quentin Young <qlyoung@nvidia.com> | 2020-12-01 18:37:14 -0500 | 
| commit | b068d6130498c139b4ec14097304791c4e449c0d (patch) | |
| tree | cf28bb1c9853d4cd9aeb3e49fa5ae79b03f70018 /lib/frrlua.c | |
| parent | bf6e72655349812ee1322bb019a056846d6637ca (diff) | |
lib: remove extraneous scripting debugs
Signed-off-by: Quentin Young <qlyoung@nvidia.com>
Diffstat (limited to 'lib/frrlua.c')
| -rw-r--r-- | lib/frrlua.c | 10 | 
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/frrlua.c b/lib/frrlua.c index f8670a4b41..3c270b2340 100644 --- a/lib/frrlua.c +++ b/lib/frrlua.c @@ -62,8 +62,6 @@ void lua_pushprefix(lua_State *L, const struct prefix *prefix)  {  	char buffer[PREFIX_STRLEN]; -	zlog_debug("frrlua: pushing prefix table"); -  	lua_newtable(L);  	lua_pushstring(L, prefix2str(prefix, buffer, PREFIX_STRLEN));  	lua_setfield(L, -2, "network"); @@ -86,8 +84,6 @@ void *lua_toprefix(lua_State *L, int idx)  void lua_pushinterface(lua_State *L, const struct interface *ifp)  { -	zlog_debug("frrlua: pushing interface table"); -  	lua_newtable(L);  	lua_pushstring(L, ifp->name);  	lua_setfield(L, -2, "name"); @@ -156,8 +152,6 @@ void *lua_tointerface(lua_State *L, int idx)  void lua_pushinaddr(lua_State *L, const struct in_addr *addr)  { -	zlog_debug("frrlua: pushing inaddr table"); -  	char buf[INET_ADDRSTRLEN];  	inet_ntop(AF_INET, addr, buf, sizeof(buf)); @@ -182,8 +176,6 @@ void *lua_toinaddr(lua_State *L, int idx)  void lua_pushin6addr(lua_State *L, const struct in6_addr *addr)  { -	zlog_debug("frrlua: pushing in6addr table"); -  	char buf[INET6_ADDRSTRLEN];  	inet_ntop(AF_INET6, addr, buf, sizeof(buf)); @@ -207,8 +199,6 @@ void *lua_toin6addr(lua_State *L, int idx)  void lua_pushsockunion(lua_State *L, const union sockunion *su)  { -	zlog_debug("frrlua: pushing sockunion table"); -  	char buf[SU_ADDRSTRLEN];  	sockunion2str(su, buf, sizeof(buf));  | 
