Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Antti Väyrynen
/
Moya
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 98baa0d0
authored
Feb 06, 2018
by
Tuukka Kivilahti
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
logging into view expired thingy, so it can be traced
1 parent
aa0bccf5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
code/moya-web/src/main/java/fi/codecrew/moya/exceptions/BortalExceptionHandler.java
code/moya-web/src/main/java/fi/codecrew/moya/exceptions/BortalExceptionHandler.java
View file @
98baa0d
...
...
@@ -61,9 +61,10 @@ public class BortalExceptionHandler extends ExceptionHandlerWrapper {
logger
.
debug
(
"Found exception! handing it: {}"
,
t
.
getClass
().
toString
());
if
(
t
instanceof
ViewExpiredException
)
{
logger
.
debug
(
"ViewExpiredException details"
,
t
);
errorpage
(
i
,
t
,
"/viewExpired"
);
}
Throwable
cause
=
t
.
getCause
();
for
(
int
loop
=
0
;
loop
<
20
&&
cause
!=
null
;
++
loop
)
{
logger
.
debug
(
"Cause not null, but {}: {}, checking"
+
cause
.
getClass
(),
cause
.
getMessage
());
...
...
Write
Preview
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment