From a15eb568b290e6cc290f5f9690a13474b583fdb4 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Sat, 23 Jun 2012 20:36:20 +0000 Subject: [PATCH] ip: Remove an unusable log line. --- functions.ip | 3 --- 1 file changed, 3 deletions(-) diff --git a/functions.ip b/functions.ip index 1258ac18..54ed7783 100644 --- a/functions.ip +++ b/functions.ip @@ -24,7 +24,6 @@ IP_SUPPORTED_PROTOCOLS="" function ip_split_prefix() { local address=${1} - assert isset address echo "${address%%/*}" @@ -32,7 +31,6 @@ function ip_split_prefix() { function ip_get_prefix() { local address=${1} - assert isset address # Break if no prefix is provided @@ -49,7 +47,6 @@ function ip_detect_protocol() { local protocol for protocol in ${IP_SUPPORTED_PROTOCOLS}; do if ${protocol}_is_valid ${address}; then - log DEBUG "Address '${address}' was detected to be protocol '${protocol}'." echo "${protocol}" return ${EXIT_OK} fi -- 2.47.3