python logging

2011-05-17 Thread Fei
where is default logging file on Mac? I saw lots of app just import
logging, and begins to logging.info(...) etc.  I'm not sure where to
look at the logging configuration to figure out the log location.

I just get in touch of python about 1month ago, and I appreciate your
help.
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: python logging

2011-05-17 Thread Fei
On May 17, 6:55 pm, Ian Kelly  wrote:
> On Tue, May 17, 2011 at 2:55 PM, Fei  wrote:
> > where is default logging file on Mac? I saw lots of app just import
> > logging, and begins to logging.info(...) etc.  I'm not sure where to
> > look at the logging configuration to figure out the log location.
>
> There is no default log file.  You're seeing that because logging only
> needs to be configured by the program once, not on a per-module basis.
>  Thus most modules will just do import logging on the assumption that
> the configuration has already been performed somewhere else.
>
> If no logging configuration is done at all, then the logging
> statements will have no effect.

Thanks Ian.
-- 
http://mail.python.org/mailman/listinfo/python-list


embed threaded python code, thread won't start right the way

2007-12-19 Thread Yue Fei
I have a multi thread python code, threads can start immediately if I run on 
command line, but I can get them started right the way if I call the same code 
from C/C++.

test code like this:
from threading import Thread
import thread
class testThread(Thread):
def __init__ (self, id):
Thread.__init__(self)
self.id = id
def run(self):
print "  >>> thread ", self.id, " started"
j = 0
for i in range(1, 2000):
j = j+1
print "  <<< thread ", self.id, " ended"

def run():
t1 = testThread(1);
t2 = testThread(2);
t3 = testThread(3);
print "> start t1"
t1.start();
print "> start t2"
t2.start();
print "> start t3"
t3.start();

If run this from command line, I get result immediately:
> start t1
  >>> thread  1  started
  <<< thread  1  ended
> start t2
> start t3
return from run() call
>>>   >>> thread  2  started
  <<< thread  2  ended
  >>> thread  3  started
  <<< thread  3  ended

If I call this py code from c as:
Py_Initialize();
PyEval_InitThreads();
PyRun_SimpleString("import \n.run()\n");
for (j=0; j<3; j++)
{
for (i=0; i<100; i++)
{
}
PyRun_SimpleString("print 'kick python'\n");
sleep(1);
printf("sleep\n");
}
printf(" before Finalize()\n");
Py_Finalize();
printf(" after Finalize()\n");

When c code is doing busy loop or sleeping, python thread can not run.   they 
can only be executed when Py_Finalize(); is called.   out put is like:
> start t1
> start t2
  >>> thread  1  started
> start t3
return from run() call
kick python
sleep
kick python
sleep
kick python
sleep
 before Finalize()
  >>> thread  2  started
  >>> thread  3  started
  <<< thread  3  ended
  <<< thread  2  ended
  <<< thread  1  ended
 after Finalize()

 




  

Never miss a thing.  Make Yahoo your home page. 
http://www.yahoo.com/r/hs
-- 
http://mail.python.org/mailman/listinfo/python-list