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
d7b2fc8d
authored
2014-06-19 15:54:44 -0500
by
Jerry Pommer
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge branch 'BF-3270' of /home/git/repositories/brainfood/ofbiz-directcontrolservlet
2 parents
79215975
b581c765
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 @
d7b2fc8
...
...
@@ -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