From user-return-6754-apmail-couchdb-user-archive=couchdb.apache.org@couchdb.apache.org Tue Oct 06 19:15:24 2009 Return-Path: Delivered-To: apmail-couchdb-user-archive@www.apache.org Received: (qmail 34622 invoked from network); 6 Oct 2009 19:15:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 6 Oct 2009 19:15:23 -0000 Received: (qmail 26954 invoked by uid 500); 6 Oct 2009 19:15:21 -0000 Delivered-To: apmail-couchdb-user-archive@couchdb.apache.org Received: (qmail 26891 invoked by uid 500); 6 Oct 2009 19:15:21 -0000 Mailing-List: contact user-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@couchdb.apache.org Delivered-To: mailing list user@couchdb.apache.org Received: (qmail 26881 invoked by uid 99); 6 Oct 2009 19:15:21 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Oct 2009 19:15:21 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of glenn@rempe.us designates 209.85.211.204 as permitted sender) Received: from [209.85.211.204] (HELO mail-yw0-f204.google.com) (209.85.211.204) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Oct 2009 19:15:12 +0000 Received: by ywh42 with SMTP id 42so3885655ywh.28 for ; Tue, 06 Oct 2009 12:13:51 -0700 (PDT) MIME-Version: 1.0 Received: by 10.90.242.1 with SMTP id p1mr878037agh.105.1254856431195; Tue, 06 Oct 2009 12:13:51 -0700 (PDT) In-Reply-To: References: <6cfccb3d0910030910m678c9157o811a57e02ffbeff0@mail.gmail.com> <6cfccb3d0910032307i1df64f79u437d5c803bff2c50@mail.gmail.com> <6cfccb3d0910052346hb4ca0b3o7eb6e77fec4ac1a7@mail.gmail.com> <19F6C39C-20E9-4DA5-B5C8-D01CA1D51675@apache.org> <6cfccb3d0910060853u2198c393ua0d912bc7d220f6b@mail.gmail.com> <6cfccb3d0910060928g641a40fcs835a28d53f034a34@mail.gmail.com> <6cfccb3d0910061121t2fbdfdbfq72a19eb08e9ef663@mail.gmail.com> From: Glenn Rempe Date: Tue, 6 Oct 2009 12:13:31 -0700 Message-ID: <6cfccb3d0910061213qc3b1fb6x47e4652bb2320a52@mail.gmail.com> Subject: Re: Timeout Error when trying to access views + Indexing problems To: user@couchdb.apache.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org On Tue, Oct 6, 2009 at 11:28 AM, Paul Davis w= rote: > > So there is no way to turn on an additional level of debugging in the v= iew > > generation process with the current code? =C2=A0I noticed that there is= a 'tmi' > > logging level in the erlang couchdb code (which I just turned on). =C2= =A0Will > > this help? > > A TMI log level is news to me. I've never seen a log macro that uses it. LEVEL_TMI is defined in couch_log.erl (I assume it stands for 'Too Much Information' :-) But it looks like its not really used in the code... glenn@macbook-pro ~/src/git/couchdb[master*]$ git grep LOG_DEBUG | wc -l 56 glenn@macbook-pro ~/src/git/couchdb[master*]$ git grep LOG_TMI | wc -l 0 glenn@macbook-pro ~/src/git/couchdb[master*]$ git grep LOG_INFO | wc -l 41 glenn@macbook-pro ~/src/git/couchdb[master*]$ git grep LOG_ERROR | wc -l 30 Actually, if I am reading this correctly there are only 127 logging statements in the entirety of the couchdb erlang code. That doesn't sound like much... (coming from a guy starved for logging info :-) Glenn