From: ed Date: 2005-01-25T10:55:50+09:00 Subject: Re: redirect error messages Matthew Margolis wrote in news:41F5A084.7010107@wisc.edu: > Anyone care to help me figure this out before I have to cancel my > hosting service and waste time moving the domain? I'm a newbie to ruby, but try the following: $stderr = File.open('error.log', 'w+') $stdout = $stderr In theory, both stdout and stderr should be redirected to the file. Ed.