On Sat, 30 Jun 2001, Stas Bekman wrote:

> 
> As we see at the list, sometimes users have a problem to start the server
> in the 'make test' stage and when they see:
> 
>   server failed to start! (please examine t/logs/error_log)
> 
> many times this log file doesn't exist. So let's check whether the file
> exists before we suggest to look at this file. In case it doesn't exist we
> should point to the debug resource. Since currently we don't have any
> final SUPPORT doc, I wrote some blurb. later on we can replace with a
> pointer to a doc that explains what to do.

looks good.  don't forget:
if () {
}
else {
}
not
if () {
} else {
}

this would be fine too:
my log_file_info = -e $log ? 
    "please examine $log" :
    "$log wasn't created, start the server in debug mode";

Reply via email to