comparison TODO @ 3786:3801435e34a1 SylvainRouquette/fix-issue169-95b752c

integration Orthanc-1.6.0->SylvainRouquette
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 19 Mar 2020 11:48:30 +0100
parents ea8c1c0e81eb
children 5b731d898bee
comparison
equal deleted inserted replaced
3785:763533d6dd67 3786:3801435e34a1
112 --- 112 ---
113 113
114 * Image transcoding API 114 * Image transcoding API
115 * Add plugins for normalized operations (notably so as to support 115 * Add plugins for normalized operations (notably so as to support
116 Print SCU/SCP): 116 Print SCU/SCP):
117 https://www.medicalconnections.co.uk/kb/DICOM_Print_Service 117 https://web.archive.org/web/20170923150432/https://www.medicalconnections.co.uk/kb/DICOM_Print_Service
118 * Provide access to the Orthanc::DicomUserConnection class in plugins: 118 * Provide access to the Orthanc::DicomUserConnection class in plugins:
119 https://groups.google.com/d/msg/orthanc-users/ycDA1xPuTRY/nsT2_GOtEgAJ 119 https://groups.google.com/d/msg/orthanc-users/ycDA1xPuTRY/nsT2_GOtEgAJ
120 * Provide a C++ callback similar to "ReceivedInstanceFilter()" in Lua 120 * Provide a C++ callback similar to "ReceivedInstanceFilter()" in Lua
121 https://book.orthanc-server.com/users/lua.html#filtering-incoming-dicom-instances 121 https://book.orthanc-server.com/users/lua.html#filtering-incoming-dicom-instances
122 https://groups.google.com/d/msg/orthanc-users/BtvLTE5Ni8A/vIMhmMgfBAAJ 122 https://groups.google.com/d/msg/orthanc-users/BtvLTE5Ni8A/vIMhmMgfBAAJ
191 External applications 191 External applications
192 ===================== 192 =====================
193 193
194 * Create REST bindings with Slicer 194 * Create REST bindings with Slicer
195 * Create REST bindings with Horos/OsiriX 195 * Create REST bindings with Horos/OsiriX
196
197
198 ====
199 Misc
200 ====
201
202 -------
203 Logging
204 -------
205
206 This is a wish expressed in issue #65 on BitBucket:
207
208 "Different levels for various modules (nice to have)
209
210 We often need to debug DICOM interactions and logs are 'polluted' by
211 logs from the Rest API, i.e: since I have a process calling the
212 /changes route every 5 second, I'm lost in 17000 /changes record in my
213 logs everyday while I just want to check what kind of C-Find requests
214 are issued by a modality. If we go for it, logs could be configured
215 via the configuration file: i.e.:
216
217 {
218 "Web": "info",
219 "Dicom": "debug",
220 "Db": "warning",
221 "WebViewer": "warning", // here WebViewer is a plugin
222 "Generic": "warning", // for all stuffs we could not port to the new logging API or old plugins ....
223 }"