in reply to Expect prints command to console

Set log_stdout AFTER the spawn worked for me (it did not work if it was set before the spawn):

$exp->spawn("su - root"); $exp->log_stdout(0); ## <<AFTER the spawn
Apologies for answering an oldie, but it helped me.