Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
memoriav
Memobase 2020
services
Deletion Components
Record Deleter
Commits
2eaec81d
Verified
Commit
2eaec81d
authored
Jun 10, 2021
by
Sebastian Schüpbach
Browse files
pretty print stacktrace
parent
c12f213a
Pipeline
#27765
passed with stages
in 5 minutes and 44 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
src/main/scala/ch/memobase/App.scala
View file @
2eaec81d
...
...
@@ -44,8 +44,8 @@ object App
.
foreach
(
rec
=>
reportResult
(
rec
))
}
catch
{
case
e
:
Exception
=>
logger
.
error
(
e
.
getMessage
)
logger
.
info
(
e
.
getStackTrace
)
logger
.
error
(
e
)
logger
.
info
(
e
.
getStackTrace
.
mkString
(
"\n"
)
)
sys
.
exit
(
1
)
}
finally
{
logger
.
info
(
"Shutting down application"
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
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 comment