On Feb 10, 2009, at 7:35 AM, przemek.ch wrote:

>
> Hi,
>
> Using sql alchemy I get warnings like this:
>
> C:\Python26\lib\site-packages\sqlalchemy-0.5.3dev-py2.6.egg\sqlalchemy
> \orm\scoping.py:121: SADeprec
> ationWarning: Use session.add()
>  return getattr(self.registry(), name)(*args, **kwargs)
>
> But here I can't see the source of the problem.
> How can I configure the logger to see whole stack trace.
>
> In my development.ini I have:

This is a warning emitted by the warnings module -- it has nothing to  
do with the logging system.

Either the deprecated call was caused by SQLAlchemy itself (hence it  
referring to its own code) or probably more likely, the warning is  
using the wrong stack level, and not pointing you to where your code  
is using the deprecated call. You'll probably want to ask the  
sqlachemy devs about it.

--
Philip Jenvey

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" group.
To post to this group, send email to pylons-discuss@googlegroups.com
To unsubscribe from this group, send email to 
pylons-discuss+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/pylons-discuss?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to