Re: noob: Where does print output go?

2008-08-22 Thread Gerard Petersen
Frantisek, It was, I just couldn't get it there because the print statement was in a view that was never invoked .. :-/ Thanx a lot. Regards, Gerard. Frantisek Malina wrote: > When using the development server, > print output is right in the terminal. > >

Re: noob: Where does print output go?

2008-08-22 Thread lingrlongr
Take a look at django-logging. http://code.google.com/p/django-logging/wiki/Overview On Aug 22, 4:26 am, [EMAIL PROTECTED] wrote: > Hi All, > > Can anybody tell me if there's a possibility to see output of the > regular print command when used in a view? fo instance to a log file > with a

Re: noob: Where does print output go?

2008-08-22 Thread Frantisek Malina
When using the development server, print output is right in the terminal. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To

Re: noob: Where does print output go?

2008-08-22 Thread Gerard
Emily, Great idea, thanx! Regards, Gerard. Emily Rodgers wrote: > You could use the python logging module > (http://docs.python.org/lib/module-logging.html) and do > logging.debug(list(product_list)). Then it will appear in your web logs. > >> -Original Message- >> From:

RE: noob: Where does print output go?

2008-08-22 Thread Emily Rodgers
You could use the python logging module (http://docs.python.org/lib/module-logging.html) and do logging.debug(list(product_list)). Then it will appear in your web logs. > -Original Message- > From: django-users@googlegroups.com > [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED]