vote up 0 vote down star

Whenever I try

logger.info ("REQUEST: \n " + request.to_yaml)

I get this error:

can't dump anonymous class Class

What's the best way to see what's in the request object (in a readable way)?

flag

73% accept rate

1 Answer

vote up 3 vote down
logger.info ("REQUEST: \n " + request.inspect)
link|flag
inspect munges everything together on one line -- it's impossible to see what's going on – Horace Loeb Aug 30 at 2:28
I guess I'm just used to reading it that way. The problem you are running into is that not every Class defines to_yaml, and specifically "Class" in the error you're seeing. You could be more specific though. Is there a reason you need to see the entire request object, and not just some subset of its attributes? – jdl Aug 30 at 6:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.