Camunda linux logging

Hi, i wanted to ask a question about camunda linux file configs.

On windows inside camunda configuration folder, there is a production.yml file which contains

logging:
   level.root: INFO
   file.name: logs/camunda-bpm-run.log

I want to find the same thing inside my linux base docker camunda container.

The closesest thing i found is inside
Camunda>conf>logging.properties

org.apache.catalina.core.ContainerBase.[Catalina].[localhost].level = INFO
org.apache.catalina.core.ContainerBase.[Catalina].[localhost].handlers = 2localhost.org.apache.juli.AsyncFileHandler

org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/manager].level = INFO
org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/manager].handlers = 3manager.org.apache.juli.AsyncFileHandler

org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/host-manager].level = INFO
org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/host-manager].handlers = 4host-manager.org.apache.juli.AsyncFileHandler

Is this the thing im looking for or not? and whats the difference between these 3 different levels?