'How can I capture the verbose output of an INLA model in R?

Hopefully, this example illustrates what I'm trying to do.

I run a comparison of the same simple example toggling verbose TRUE and FALSE.

library("INLA")
test <- capture.output(
{
inla(speed ~ dist, data = datasets::cars, verbose = F)

    }
    )

I try and capture the verbose output. It appears in my console but is not captured. test and test2 appear identical.

library("INLA")
test2 <- capture.output(
{
inla(speed ~ dist, data = datasets::cars, verbose = T)

    }
    )

Some system info

                                 sysname 
                                 "Linux" 
                                 release 
                 "4.19.0-16-cloud-amd64" 
                                 version 
 "#1 SMP Debian 4.19.181-1 (2021-03-19)" 

Some R version info

platform       x86_64-pc-linux-gnu         
arch           x86_64                      
os             linux-gnu                   
system         x86_64, linux-gnu           
status                                     
major          3                           
minor          6.3                         
year           2020                        
month          02                          
day            29                          
svn rev        77875                       
language       R                           
version.string R version 3.6.3 (2020-02-29)
nickname       Holding the Windsock  


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source