Possible to disable request.log?

Is it possible to disable request.log short of commenting out this whole section in jetty.xml?

<!-- =========================================================== -->
<!-- Configure Request Log                                       -->
<!-- Request logs  may be configured for the entire server here, -->
<!-- or they can be configured for a specific web app in a       -->
<!-- contexts configuration (see $(jetty.home)/contexts/test.xml -->
<!-- for an example).                                            -->
<!-- =========================================================== -->

<Ref id="RequestLog">
  <Set name="requestLog">
    <New id="RequestLogImpl" class="org.eclipse.jetty.server.NCSARequestLog">
      <Set name="filename"><SystemProperty name="jetty.logs" default="./logs"/>/yyyy_mm_dd.request.log</Set>
      <Set name="filenameDateFormat">yyyy_MM_dd</Set>
      <Set name="retainDays">90</Set>
      <Set name="append">true</Set>
      <Set name="extended">false</Set>
      <Set name="logCookies">false</Set>
      <Set name="LogTimeZone">GMT</Set>
    </New>
  </Set>
</Ref>

I like to be logged into myopenhab while i’m at work and the webpage sends a request every few seconds. I would like to minimize writes on my raspberry pi.

Hi, Did you ever found a solution to this?
I would like to disable my too.

Unfortunately I didnt