ptf
ptf

Reputation: 3370

Where are logs for couchdb on iriscouch?

I'm using CouchDB on iriscouch.com.

I have made a database, which I have filled with some data. I'm running a map and a reduce function to filter out some items, but it doesn't work. Since console.log isn't working I'm trying to use the log() function CouchDB supplies. But I can't find the log files. I have found the path in the config, but thats the file path on the server, and I only have access to futon (I think).

Is there any request I can make to read the logs?

Upvotes: 5

Views: 323

Answers (1)

Ryan Ramage
Ryan Ramage

Reputation: 2616

your.iriscouch.com/_log

if you want to reach further back in the log use the bytes=x querystring, eg

your.iriscouch.com/_log?bytes=2000

Also, you will need to be logged in as an admin to access the above urls.

Upvotes: 8

Related Questions