]> git.ipfire.org Git - people/ms/network.git/commitdiff
ip: Remove an unusable log line.
authorMichael Tremer <michael.tremer@ipfire.org>
Sat, 23 Jun 2012 20:36:20 +0000 (20:36 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Sat, 23 Jun 2012 20:36:20 +0000 (20:36 +0000)
functions.ip

index 1258ac18ec2139987a3846d0a405ed96de6a282a..54ed77833e1ebcf8021c171ee2885565dd9f0235 100644 (file)
@@ -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