Mercurial > hg > orthanc-book
changeset 370:8f7e9ebf7c96
merge
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 02 Apr 2020 08:40:20 +0200 |
parents | 181b02cea7ab (current diff) 6979ebaae833 (diff) |
children | cb1d9a5bb043 847996394688 |
files | |
diffstat | 1 files changed, 10 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/Sphinx/source/faq/log.rst Thu Apr 02 08:39:41 2020 +0200 +++ b/Sphinx/source/faq/log.rst Thu Apr 02 08:40:20 2020 +0200 @@ -88,3 +88,13 @@ The command-line to be used is:: $ sudo docker run -a stderr -p 4242:4242 -p 8042:8042 --rm jodogne/orthanc --verbose /etc/orthanc > Orthanc.log 2>&1 + +Change the log level while Orthanc is running +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +Starting from Orthanc 1.6.0, you can also change the log level while Orthanc is running through the Rest API:: + + $ curl -X PUT http://localhost:8042/tools/log-level -d "verbose" + $ curl -X PUT http://localhost:8042/tools/log-level -d "trace" + $ curl -X PUT http://localhost:8042/tools/log-level -d "default" +