Skip to content

Commit

Permalink
added original c-move query in the logs (verbose mode)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcrickboom committed Oct 24, 2024
1 parent 83bba8a commit 995d6c7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,10 @@ def __init__(self, request) -> None:
self.instance_counter = 0
self.memory = [0] * 10000000

if verbose_enabled:
pprint.pprint("original C-move query:")
pprint.pprint(request)

if request["SourceAET"] in {None, ''}:
raise Exception('The DICOM query does not contain a value for the SourceAET, unable to process it!')

Expand Down
4 changes: 4 additions & 0 deletions release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ Warning: version number should fit with Orthanc docker image version number!
(so a new version of the forwarder with the same version of Orthanc should be tagged 22.10.1.x)


v 24.10.1.2
=========
- added original c-move query in the logs (verbose mode)

v 24.10.1.1
=========
- upgraded Orthanc to 24.10.1
Expand Down

0 comments on commit 995d6c7

Please sign in to comment.