]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
lxc: Change VIR_ERROR to VIR_DEBUG for just a debugging message
authorRyota Ozaki <ozaki.ryota@gmail.com>
Sat, 26 Jun 2010 18:39:41 +0000 (03:39 +0900)
committerEric Blake <eblake@redhat.com>
Mon, 28 Jun 2010 16:51:29 +0000 (10:51 -0600)
The message is actually not of error but of debugging.
02:22:56.091: error : lxcControllerMain:316 : monitor=3 client=4 appPty=19 contPty=7

src/lxc/lxc_controller.c

index cffef52577032fc8bccd596cb1c9996fd95665b9..44bcc82015c81f4a48e2ce5219320bf01617d4cd 100644 (file)
@@ -313,7 +313,10 @@ static int lxcControllerMain(int monitor,
     fdArray[0].active = 0;
     fdArray[1].fd = contPty;
     fdArray[1].active = 0;
-    VIR_ERROR(_("monitor=%d client=%d appPty=%d contPty=%d"), monitor,client, appPty, contPty);
+
+    VIR_DEBUG("monitor=%d client=%d appPty=%d contPty=%d",
+              monitor, client, appPty, contPty);
+
     /* create the epoll fild descriptor */
     epollFd = epoll_create(2);
     if (0 > epollFd) {