How to view all queries in console to mongodb?

Mongoid.logger = Logger.new($stdout)

does not help

database.rb

host = 'localhost'
port = Mongo::Connection::DEFAULT_PORT
database_name = case Padrino.env
  when :development then 'blog_development'
  when :production  then 'blog_production'
  when :test        then 'blog_test'
end
Mongoid.logger = Logger.new($stdout)
Mongoid.database = Mongo::Connection.new(host, port).db(database_name)
link|improve this question

25% accept rate
feedback

1 Answer

Try with this: Mongoid.logger = Padrino.logger

Or better:

Mongo::Connection.new(host, 27017, :logger => Padrino.logger).db(name)
link|improve this answer
nothing changes – amirka Nov 23 '11 at 8:17
mmm are you sure that this is the only necessary thing to configure logging in mongoid? Using same way in mongomapper works like a charm. – DAddYE Nov 23 '11 at 8:22
Added another solution. – DAddYE Nov 23 '11 at 8:24
thanks it's working now! – amirka Nov 23 '11 at 8:29
feedback

Your Answer

 
or
required, but never shown

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