Re: logging in omniORB for python

2004-12-16 Thread Birgit Rahm
it gets written to stdout - and then looks like this: omniORB: ObjRef(IDL:ehotel.de/omphalos/Domain:1.0) -- deleted. It was tricky: PythonWin doesnt display this, only the output of the program. Now I have started it in the DOS Box (startPrg.py logout.log) and the omniORB uses the DOS Box to

Re: logging in omniORB for python

2004-12-15 Thread f
Birgit Rahm wrote: Hello newsgroup, Hello Birgit, I haven't found any way to do logging in a standard way. The solution i've implemented is to decorate each method you want to log the call, using the logging module (included in python since 2.3) For example : import logging def

Re: logging in omniORB for python

2004-12-15 Thread Diez B. Roggisch
Does anyone know, were the log data is? And how I can store it in a file? By the way I ask also the omniORB mailing list, but here are the python experts. it gets written to stdout - and then looks like this: omniORB: ObjRef(IDL:ehotel.de/omphalos/Domain:1.0) -- deleted. omniORB:

logging in omniORB for python

2004-12-14 Thread Birgit Rahm
Hello newsgroup, I work with omniORB for python and I what to log the calls, does anyone in this group know how I can do this? I use the command to initialize the ORB ORB = CORBA.ORB_init(sys.argv + [-ORBtraceLevel, 40], CORBA.ORB_ID) but I dont get a log file or a message in pythonwin output