From 824b9a2982b2ecca080474289e6d97373186754f Mon Sep 17 00:00:00 2001 From: Robert Swiecki Date: Fri, 1 Jun 2018 03:14:48 +0200 Subject: [PATCH] net: dbg message --- net.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net.cc b/net.cc index 5ee77fc..2969bb5 100644 --- a/net.cc +++ b/net.cc @@ -164,7 +164,7 @@ static bool moveToNs(const std::string& iface, pid_t pid) { const std::vector argv{ "/sbin/ip", "link", "set", iface, "netns", std::to_string(pid)}; if (subproc::systemExe(argv, environ) != 0) { - LOG_E("Couldn't create put interface '%s' into NET ns of the PID=%d", iface.c_str(), + LOG_E("Couldn't put interface '%s' into NET ns of the PID=%d", iface.c_str(), (int)pid); return false; } -- 2.7.4