Skip to content

Commit

Permalink
adding logs around where now_app status could should change to REC
Browse files Browse the repository at this point in the history
  • Loading branch information
asinn134 committed Feb 9, 2024
1 parent f8d08e9 commit 0503095
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,13 @@ def post(self, application_guid):

# update application status to received once imported
now_application_identity.now_application.previous_application_status_code = now_application_identity.now_application.now_application_status_code
current_app.logger.debug(f'now_application_status_code before change to REC:
{now_application_identity.now_application.now_application_status_code}')

now_application_identity.now_application.now_application_status_code = "REC"

current_app.logger.debug(f'now_application_status_code after change to REC:
{now_application_identity.now_application.now_application_status_code}')
now_application_identity.save()

NROSNOWStatusService.nros_now_status_update(
Expand Down

0 comments on commit 0503095

Please sign in to comment.