Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

General Guidelines

#Guideline
1

It is up to the consumer of the java API if they want to log the exception or not. 

2

In the REST API when we catch an exception we should log it as we lose a lot of information when we convert it into a HTTP response code.

3

For business exceptions we will use error level but we will add configuration so that it is not written to the console by default.

4

You should log the original exception if it provides more information. 

5Exception should be logged as close to the source as possible.
6

For business exceptions we will use error level but we will add configuration so that it is not written to the console by default.

7Check logging level when constructing strings i.e. using more than one static string.


Summary of each logging level

...