# HG changeset patch # User Alain Mazy # Date 1585773901 -7200 # Node ID 6979ebaae833d9a568a8de55b6604a19d6ff0499 # Parent ecdd754e16bae4a27c5247e492cc2ea9120ae271# Parent 12f88a12d14645aba9281e3d8698bf9bbfe77434 merge diff -r 12f88a12d146 -r 6979ebaae833 Sphinx/source/faq/log.rst --- a/Sphinx/source/faq/log.rst Wed Apr 01 08:49:06 2020 +0200 +++ b/Sphinx/source/faq/log.rst Wed Apr 01 22:45:01 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" +