Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
brainfood
/
ofbiz-directcontrolservlet
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
b581c765
authored
2014-06-19 15:42:32 -0500
by
Ean Schuessler
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Log exceptions when processing a request
1 parent
79215975
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
src/com/brainfood/ofbiz/DirectControlServlet.java
src/com/brainfood/ofbiz/DirectControlServlet.java
View file @
b581c76
...
...
@@ -232,6 +232,8 @@ public class DirectControlServlet extends HttpServlet {
}
catch
(
Throwable
t
)
{
response
.
setStatus
(
400
);
PrintWriter
writer
=
response
.
getWriter
();
Debug
.
logInfo
(
"Exception processing request"
,
module
);
Debug
.
logInfo
(
t
,
module
);
while
(
t
!=
null
)
{
t
.
printStackTrace
(
writer
);
t
=
t
.
getCause
();
...
...
Please
register
or
sign in
to post a comment