r9649 - helma-ng/trunk/modules/helma/webapp
[email protected] Wed, 22 Apr 2009 01:41:56 +0200 (CEST)
| Newsgroups | gmane.comp.java.helma.cvs |
|---|---|
| Message-ID | <20090421234156.690483D0D6@mia> |
Author: hannes
Date: 2009-04-22 01:41:56 +0200 (Wed, 22 Apr 2009)
New Revision: 9649
Modified:
helma-ng/trunk/modules/helma/webapp/continuation.js
Log:
Change log level from info to debug
Details at http://dev.helma.org/trac/helma/changeset/9649
Modified: helma-ng/trunk/modules/helma/webapp/continuation.js
===================================================================
--- helma-ng/trunk/modules/helma/webapp/continuation.js 2009-04-21 23:41:54 UTC (rev 9648)
+++ helma-ng/trunk/modules/helma/webapp/continuation.js 2009-04-21 23:41:56 UTC (rev 9649)
@@ -30,7 +30,7 @@
function ContinuationRequest(req, res, key) {
// capture continuation and store it in callback container
var id = ContinuationId(key);
- log.info("registering callback for id " + id);
+ log.debug("registering callback for id " + id);
setCallback(req, id, new Continuation());
// trick to exit current context: call empty continuation
new org.mozilla.javascript.NativeContinuation()(res);
@@ -40,7 +40,7 @@
var id = req.params.helma_continuation;
ids[key] = id;
var cont = new Continuation();
- log.info("Recording continuation start: " + id);
+ log.debug("Recording continuation start: " + id);
setCallback(req, id, cont);
return req;
}
@@ -63,7 +63,7 @@
var id = req.params.helma_continuation;
var continuation = getCallback(req, id);
if (continuation) {
- log.info("resuming continuation " + id + " with req " + req);
+ log.debug("resuming continuation " + id + " with req " + req);
return continuation(req);
}
return req.process();