Mercurial > hg > orthanc-book
annotate Sphinx/source/faq/log.rst @ 838:6afc236cd60a
dicom-web & main-dicom-tags
author | Alain Mazy <am@osimis.io> |
---|---|
date | Thu, 05 May 2022 12:27:09 +0200 |
parents | c8afdaeb877a |
children | bca261dac7bb |
rev | line source |
---|---|
23
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
1 .. _log: |
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
2 |
126 | 3 Collecting logs |
4 --------------- | |
124 | 5 |
6 Standard logs | |
7 ============= | |
8 | |
9 Everytime the Orthanc service starts, it will generate | |
10 a new log file in ``C:\Program Files\Orthanc Server\Logs`` on Windows | |
11 and in ``/var/log/orthanc/`` on Linux. | |
12 | |
13 By default, on Windows, if the Orthanc service fails to start, it will | |
14 retry to start 5 times and stop so it does not generate thousands of log files. | |
23
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
15 |
124 | 16 Log files are named as ``Orthanc.log.YYYYMMDD-hhmmss.ffff`` including |
17 the date/time when Orthanc was started. | |
18 | |
19 Orthanc is not removing old logs so these log files might accumulate | |
20 and consume lot's of space. It's up to you to manage the logs folder | |
21 to make sure you don't fill your disk with logs. | |
22 | |
23 | |
24 | |
25 Generating an exploitable debug log | |
26 =================================== | |
27 | |
538
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
28 .. highlight:: bash |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
29 |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
30 By default, the Orthanc logs contain only the ``WARNING`` and |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
31 ``ERROR`` information levels. For your logs to be exploitable by the |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
32 Orthanc community, you must include more information by adding the |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
33 ``--verbose`` or ``--trace`` command-line options, which will add the |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
34 ``INFO`` and ``TRACE`` information levels. If you are starting Orthanc |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
35 from the command-line, simply add these flags and redirect the |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
36 standard outputs to some log file. For instance:: |
23
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
37 |
538
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
38 $ ./Orthanc --trace --logfile=orthanc.log |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
39 |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
40 Note that the Orthanc command-line tool has many other options related |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
41 to logging. Check out the :ref:`full manpage <manpage>`. |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
42 |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
43 However, if you use packaged versions of Orthanc that starts the |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
44 server in background (such as GNU/Linux packages or the Windows |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
45 installers by Osimis), you will have to manually start Orthanc. The |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
46 sections below explain how to achieve this goal with the officially |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
47 supported packages. |
23
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
48 |
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
49 |
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
50 Under Windows |
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
51 ^^^^^^^^^^^^^ |
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
52 |
538
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
53 Under Windows, if you used the official installer by Osimis: |
23
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
54 |
809
23f21a00b03b
updated collect log procedure for windows
Alain Mazy <am@osimis.io>
parents:
638
diff
changeset
|
55 1. Stop the Orthanc service. The actual process depends on your |
23
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
56 version of Windows. |
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
57 |
809
23f21a00b03b
updated collect log procedure for windows
Alain Mazy <am@osimis.io>
parents:
638
diff
changeset
|
58 2. Make sure you have a ``C:\Temp`` folder available to store the log file. |
23
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
59 |
809
23f21a00b03b
updated collect log procedure for windows
Alain Mazy <am@osimis.io>
parents:
638
diff
changeset
|
60 3. In a command-line shell, manually start Orthanc to generate the |
233 | 61 ``Orthanc.log`` file:: |
23
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
62 |
809
23f21a00b03b
updated collect log procedure for windows
Alain Mazy <am@osimis.io>
parents:
638
diff
changeset
|
63 $ "C:\Program Files\Orthanc Server\Orthanc.exe" --verbose "C:\Program Files\Orthanc Server\Configuration" > C:\Temp\Orthanc.log 2<&1 |
23
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
64 |
809
23f21a00b03b
updated collect log procedure for windows
Alain Mazy <am@osimis.io>
parents:
638
diff
changeset
|
65 This will start Orthanc with exactly the same configuration as your service, |
23f21a00b03b
updated collect log procedure for windows
Alain Mazy <am@osimis.io>
parents:
638
diff
changeset
|
66 but in verbose mode. |
23f21a00b03b
updated collect log procedure for windows
Alain Mazy <am@osimis.io>
parents:
638
diff
changeset
|
67 |
23f21a00b03b
updated collect log procedure for windows
Alain Mazy <am@osimis.io>
parents:
638
diff
changeset
|
68 4. Once the log has been generated (in ``C:\Temp\Orthanc.log``), stop Orthanc |
23f21a00b03b
updated collect log procedure for windows
Alain Mazy <am@osimis.io>
parents:
638
diff
changeset
|
69 and possibly restart the Orthanc service. |
23
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
70 |
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
71 |
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
72 Under Debian GNU/Linux |
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
73 ^^^^^^^^^^^^^^^^^^^^^^ |
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
74 |
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
75 1. Stop the Orthanc service:: |
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
76 |
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
77 $ sudo /etc/init.d/orthanc stop |
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
78 |
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
79 2. Manually start Orthanc (using the same configuration as the |
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
80 service) and generate the log:: |
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
81 |
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
82 $ sudo -u orthanc /usr/sbin/Orthanc --verbose /etc/orthanc/ > Orthanc.log 2>&1 |
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
83 |
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
84 3. Restart the Orthanc service:: |
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
85 |
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
86 $ sudo /etc/init.d/orthanc start |
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
87 |
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
88 |
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
89 Under Docker |
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
90 ^^^^^^^^^^^^ |
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
91 |
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
92 The command-line to be used is:: |
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
93 |
f99aa6a6f0c9
Generating an Exploitable Log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
94 $ sudo docker run -a stderr -p 4242:4242 -p 8042:8042 --rm jodogne/orthanc --verbose /etc/orthanc > Orthanc.log 2>&1 |
367 | 95 |
538
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
96 |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
97 Changing the log level while Orthanc is running |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
98 =============================================== |
367 | 99 |
538
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
100 Starting with Orthanc 1.6.0, you can dynamically change the log level |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
101 while Orthanc is running using the :ref:`REST API <rest>`:: |
367 | 102 |
103 $ curl -X PUT http://localhost:8042/tools/log-level -d "verbose" | |
104 $ curl -X PUT http://localhost:8042/tools/log-level -d "trace" | |
105 $ curl -X PUT http://localhost:8042/tools/log-level -d "default" | |
106 | |
538
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
107 |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
108 Log categories |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
109 ============== |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
110 |
568 | 111 Starting with Orthanc 1.8.2, log messages are associated with a |
538
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
112 **category**. The category indicates the subsystem of Orthanc from |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
113 which the message comes (such as the embedded HTTP server, the DICOM |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
114 communications, Lua scripts...). |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
115 |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
116 It is possible to choose a different log level for each category. This |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
117 can be done when starting Orthanc as follows:: |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
118 |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
119 $ ./Orthanc --verbose-http --trace-dicom |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
120 |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
121 This command would start Orthanc in verbose mode for HTTP-related |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
122 messages, and would enable debug messages related to DICOM. The full |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
123 list of the available log categories (``http``, ``dicom``, ``lua``, |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
124 ``plugins``...) can be found in the :ref:`manpage of Orthanc |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
125 <manpage>` or by starting Orthanc with the ``--help`` flag. |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
126 |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
127 It is also possible to dynamically change the log level of a category |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
128 while Orthanc is running by using the :ref:`REST API <rest>`, for |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
129 instance:: |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
130 |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
131 $ curl -X PUT http://localhost:8042/tools/log-level-http -d "verbose" |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
132 $ curl -X PUT http://localhost:8042/tools/log-level-dicom -d "trace" |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
133 $ curl -X PUT http://localhost:8042/tools/log-level-plugins -d "default" |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
134 |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
135 The list of the available log categories is also available through the |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
136 REST API, by inspecting the URIs that are prefixed by |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
137 ``/tools/log-level``:: |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
138 |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
139 $ curl http://localhost:8042/tools/ |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
140 [...] |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
141 "log-level", |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
142 "log-level-dicom", |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
143 "log-level-generic", |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
144 "log-level-http", |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
145 "log-level-jobs", |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
146 [...] |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
147 |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
148 **Remarks:** |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
149 |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
150 * Messages that are not associated with a well-identified category are |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
151 considered as belonging to the ``generic`` category. |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
152 |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
153 * Using the ``--verbose`` or ``-trace`` command-line options, or |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
154 changing the value of the ``/tools/log-level`` URI will reset the |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
155 log level of **all** the categories. Note that the command-line |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
156 options are applied from left to right. |
d18496f166b8
documenting the log categories, and manpage of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
528
diff
changeset
|
157 |