What global can I use to enable the FHIR Log Data Beta feature?
My question is about the below tile, which only shows up if you set a specific global.
Does anyone know what that global is?

Comments
This is the only information related with logging in the documentation:
https://docs.intersystems.com/irisforhealthlatest/csp/docbook/DocBook.U…
The FHIR logs are stored in the global ^FSLOG . Enable this logging by declaring the ^FSLogChannel
the log is managed by the ^FSLogChannel global.
set ^FSLogChannel(channelType) = 1For example, to enable logging for all types of information, enter:
set ^FSLogChannel("all") = 1ChannelType is one of the following:
- Msg — Logs status messages.
- SQL — Logs SQL-related information.
- _include — Logs information related to searches that use the _include and _revinclude parameters.
- all — Logs all three types of information.
Theo, as you see it is described as "beta" therefore it is not currently publicly documented.
Internally you can see IF-1930. It states: "This should only be used with guidance from InterSystems Support."
Thanks @Tani Frankel! I suspect the Support guidance is for when it is used in combination with HealthShare ODS production instances. When you run a local IRIS FHIR Repository as a developer, I believe there is no harm in using this. So the trick I was looking for is:
set ^HS.FHIRServer("dev") = 1
After refreshing the fhirconfig page, the new tile pops up:
.png)