One debugging method I find helpful is being able to "print" to console the 
variables, objects, etc. 
I'm creating a decoupled application and the client-side is sending args to 
the server-side. To understand what these args exactly entail I'd like to 
print them out using Python. 
Consider this example:

@request.restful()
def clients():
  def POST(**vars):
    print **vars
    return ...

By printing **vars, I intend to see that in console (or somewhere). Is this 
possible? If so, how can I achieve this?

Thanks :)

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to