if (!ply_write (connection->fd,
PLY_BOOT_PROTOCOL_RESPONSE_TYPE_NO_ANSWER,
strlen (PLY_BOOT_PROTOCOL_RESPONSE_TYPE_NO_ANSWER)))
- ply_error ("could not write bytes: %m");
+ ply_trace ("could not write bytes: %m");
}
else
{
size) ||
!ply_write (connection->fd,
answer, size))
- ply_error ("could not write bytes: %m");
+ ply_trace ("could not write bytes: %m");
}
PLY_BOOT_PROTOCOL_RESPONSE_TYPE_ACK,
strlen (PLY_BOOT_PROTOCOL_RESPONSE_TYPE_ACK)))
{
- ply_error ("could not write bytes: %m");
+ ply_trace ("could not write bytes: %m");
}
}
PLY_BOOT_PROTOCOL_RESPONSE_TYPE_ACK,
strlen (PLY_BOOT_PROTOCOL_RESPONSE_TYPE_ACK)))
{
- ply_error ("could not write bytes: %m");
+ ply_trace ("could not write bytes: %m");
}
}
if (!ply_write (connection->fd,
PLY_BOOT_PROTOCOL_RESPONSE_TYPE_NAK,
strlen (PLY_BOOT_PROTOCOL_RESPONSE_TYPE_NAK)))
- ply_error ("could not write bytes: %m");
+ ply_trace ("could not write bytes: %m");
free (command);
return;
if (!ply_write (connection->fd,
PLY_BOOT_PROTOCOL_RESPONSE_TYPE_ACK,
strlen (PLY_BOOT_PROTOCOL_RESPONSE_TYPE_ACK)))
- ply_error ("could not write bytes: %m");
+ ply_trace ("could not write bytes: %m");
ply_trace ("got update request");
if (server->update_handler != NULL)
if (!ply_write (connection->fd,
PLY_BOOT_PROTOCOL_RESPONSE_TYPE_NO_ANSWER,
strlen (PLY_BOOT_PROTOCOL_RESPONSE_TYPE_NO_ANSWER)))
- ply_error ("could not write bytes: %m");
+ ply_trace ("could not write bytes: %m");
}
else
{
size) ||
!ply_write (connection->fd,
ply_buffer_get_bytes (buffer), size))
- ply_error ("could not write bytes: %m");
+ ply_trace ("could not write bytes: %m");
}
ply_buffer_free (buffer);
if (!ply_write (connection->fd,
PLY_BOOT_PROTOCOL_RESPONSE_TYPE_NAK,
strlen (PLY_BOOT_PROTOCOL_RESPONSE_TYPE_NAK)))
- ply_error ("could not write bytes: %m");
+ ply_trace ("could not write bytes: %m");
free(command);
return;
if (!ply_write (connection->fd,
PLY_BOOT_PROTOCOL_RESPONSE_TYPE_NAK,
strlen (PLY_BOOT_PROTOCOL_RESPONSE_TYPE_NAK)))
- ply_error ("could not write bytes: %m");
+ ply_trace ("could not write bytes: %m");
free(command);
return;
PLY_BOOT_PROTOCOL_RESPONSE_TYPE_ACK,
strlen (PLY_BOOT_PROTOCOL_RESPONSE_TYPE_ACK)))
{
- ply_error ("could not write bytes: %m");
+ ply_trace ("could not write bytes: %m");
}
free(command);
}