Skip to content

Commit

Permalink
fix log record
Browse files Browse the repository at this point in the history
  • Loading branch information
Clivern committed May 31, 2020
1 parent b08f18c commit 3e0d25b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions app/controllers/api/private/v1/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,8 @@ def post(self, request):
try:
user_id = self.__install.install()
except Exception as exception:
self.logger().error(_("Internal server error during installation: %(exception)s {'correlationId':'%(correlationId)s'}") % {
"exception": exception,
"correlationId": self.__correlation_id
self.logger().error(_("Internal server error during installation: %(exception)s") % {
"exception": exception
})

if user_id:
Expand Down

0 comments on commit 3e0d25b

Please sign in to comment.