Re: Console output using runserver..

2011-12-03 Thread vivek_12315
I just figured out that if I use : http://127.0.0.1:8081/ner/ then I am getting print output in console, but if I use: http://localhost:8081/ner/ then i am not getting the output Whats the reason behind this / ?? On Dec 3, 12:34 pm, vivek_12315

Re: Console output using runserver..

2011-12-03 Thread vivek_12315
This is what Django webpage is showing as error: OperationalError at /ner/ no such table: b_mp_TABLE Request Method: POST Request URL:

Re: Console output

2008-10-19 Thread Ned Batchelder
There's no global switch to turn off the console output. Your Django code is simply Python code running in a process, and if you use the print statement, it will print to the stdout of the process. You will have to conditionalize the print statements if you don't want to see them. Your

Re: Console output

2008-10-19 Thread Bob Cowdery
I didn't say I was using it in production. This is development and I would prefer not to have streams of stuff coming out on the console. So how do I turn it off. Bob On Sun, 2008-10-19 at 11:08 -0700, Daniel Roseman wrote: > On Oct 19, 7:05 pm, Bob Cowdery <[EMAIL PROTECTED]> wrote: > > This

Re: Console output

2008-10-19 Thread Daniel Roseman
On Oct 19, 7:05 pm, Bob Cowdery <[EMAIL PROTECTED]> wrote: > This is probably staring me in the face but I can't figure out how to > turn off the HTTP console output on the built-in server. I have an Ajax > poll running and this output is slowing things down. > > Thanks > Bob Quite simply, you