durusmail: quixote-users: Help with using medusa
Help with using medusa
2004-06-18
2004-06-18
2004-06-18
2004-06-18
2004-06-18
2004-06-18
2004-06-18
2004-06-18
2004-06-18
Re: Help with using medusa
2004-06-18
2004-06-18
2004-06-18
2004-06-18
2004-06-19
2004-06-19
2004-06-19
2004-06-19
2004-06-20
Help with using medusa
Vineet Jain
2004-06-18
run.err does not contain anything. run.log contains the following:

Now serving the Quixote demo on port 8080
info: Medusa (V1.11) started at Fri Jun 18 11:46:00 2004
        Hostname: localhost
        Port:8080

Any ideas? I don't know what to do next.

Thanks,

Vineet


-----Original Message-----
From: quixote-users-bounces+vineet=eswap.com@mems-exchange.org
[mailto:quixote-users-bounces+vineet=eswap.com@mems-exchange.org]On
Behalf Of Oleg Broytmann
Sent: Friday, June 18, 2004 10:36 AM
To: quixote-users@mems-exchange.org
Subject: Re: [Quixote-users] Help with using medusa


On Fri, Jun 18, 2004 at 11:01:45AM -0400, Vineet Jain wrote:
> The quixote_demo_error.log gets created but it is empty. Is there any
other
> log file that I should be looking at?

   Oh, BTW, windows does not allow to put into background a program with
open stdout and stderr. Redirect them to files before starting:

import sys, os
# "data/logs" subdirectory is only an example here
sys.stdout = file(os.path.join("data", "logs", "run.log"), 'w')
sys.stderr = file(os.path.join("data", "logs", "run.err"), 'w')

   and close these files after:

sys.stdout.close()
sys.stderr.close()
sys.stdout = sys.__stdout__
sys.stderr = sys.__stderr__

Oleg.
--
     Oleg Broytmann            http://phd.pp.ru/            phd@phd.pp.ru
           Programmers don't die, they just GOSUB without RETURN.
_______________________________________________
Quixote-users mailing list
Quixote-users@mems-exchange.org
http://mail.mems-exchange.org/mailman/listinfo/quixote-users


reply