Hey Stephan,
  Mike Wesner and I were actually just discussing this earlier today.
He also mentioned there being some limit on log entries, we couldn't
recall exactly what it was though.  I just ran a simple test; it seems
that only the last 1000 lines are kept.  At least that is what it
looks like to me with my test script:

  import logging
  for i in xrange(1500):
    logging.info(i)

  Results:  first line logged was 500, last line logged was 1499.


Robert



On Thu, Jan 26, 2012 at 07:24, Stephan <[email protected]> wrote:
> Hi all
>
> On Wednesday, January 25, 2012 8:23:11 AM UTC+1, Robert Kluin wrote:
>>
>> [...]
>>
>>
>> While it is true that logging adds some overhead, he's talking about a
>> backend task. So it is presumably a longer-running more involved process.
>> Logging is great in these cases because it allows you to watch the process
>> running live. I find this immensely valuable.
>>
>>
>> Robert
>
>
> This is correct, I have a long running task on a backend, which processes
> hundreds of items. Each item generates only a few lines in the log, but with
> hundreds of items, I apparently hit an unknown limit. I could think about
> spliiting the task in small subtasks, but I don't see the benefit yet other
> than getting below the unknown log limit.
>
> Thanks
> Stephan
>
> PS: starred the issue- thanks
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/google-appengine/-/_SlFWr3v6PgJ.
>
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected].
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to