fix another missing log

This commit is contained in:
fjy 2014-04-10 11:26:53 -07:00
parent 8e143adadf
commit 6742223c26
1 changed files with 4 additions and 0 deletions

View File

@ -116,6 +116,10 @@ public class AsyncQueryForwardingServlet extends HttpServlet
query = query.withId(queryId);
}
if (log.isDebugEnabled()) {
log.debug("Got query [%s]", query);
}
out = resp.getOutputStream();
final OutputStream outputStream = out;