mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-12 07:42:56 +00:00
lxc: Change VIR_ERROR to VIR_DEBUG for just a debugging message
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
This commit is contained in:
parent
06f81c63eb
commit
b3a96d9049
@ -313,7 +313,10 @@ static int lxcControllerMain(int monitor,
|
|||||||
fdArray[0].active = 0;
|
fdArray[0].active = 0;
|
||||||
fdArray[1].fd = contPty;
|
fdArray[1].fd = contPty;
|
||||||
fdArray[1].active = 0;
|
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 */
|
/* create the epoll fild descriptor */
|
||||||
epollFd = epoll_create(2);
|
epollFd = epoll_create(2);
|
||||||
if (0 > epollFd) {
|
if (0 > epollFd) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user