From 63114b6984c162d8e9e7f3068ae3b225665c7034 Mon Sep 17 00:00:00 2001 From: Arnout Engelen Date: Mon, 21 Mar 2016 09:52:18 +0100 Subject: [PATCH] Remove spurious log statement --- devices.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/devices.cpp b/devices.cpp index a314c34..ce6a108 100644 --- a/devices.cpp +++ b/devices.cpp @@ -51,7 +51,6 @@ bool already_seen(device* devices, char* devicename) { // The interface is up, not a loopback and running? bool up_running(int ifa_flags) { - std::cout << "up: " << (ifa_flags & IFF_UP) << std::endl; return !(ifa_flags & IFF_LOOPBACK) && (ifa_flags & IFF_UP) && (ifa_flags & IFF_RUNNING);