Using the example of the cp command, to copy a list of files in a directory, this list of files will be added at the end of the command... but what the cp command expects at the end of the command is the destination. To do this, use the -I option to put the input arguments somewhere else than at the end of the line.
find /var/log -type f -name "*.log" | xargs -I % cp % /root/backup
The -I option allows you to specify a character (the % character in the above example) where the input files to xargs will be placed.