On 3/20/02 11:05 AM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:

> My new web hosting service at oneononeinternet.com doesn't have error logs
> for each site. What do I do?
> 
> Is there a way for me to create my own logs for my perl files?

You could redirect STDERR like this...

open(STDERR,">>err.txt");

Then all your error messages would go to err.txt, I think. Of course, you'd
have to put that in all your scripts, and it wouldn't help you with
compile-time errors.

There certainly might be a better way I'm not familiar with, though.

-- 
Michael


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to