Page 1 of 1

How to change the http log file?

Posted: 22 Dec 2017, 03:35
by khanhdev
like the title. help me!

Re: How to change the http log file?

Posted: 22 Dec 2017, 07:21
by Lapo
Hi,
what do you mean by "change it"?
Change the name of the log file? Change the logging levels? Can you be more specific?

Thanks

Re: How to change the http log file?

Posted: 22 Dec 2017, 08:13
by khanhdev
Lapo wrote:Hi,
what do you mean by "change it"?
Change the name of the log file? Change the logging levels? Can you be more specific?

Thanks


Change the name of the log file and location saved. Thanks

Re: How to change the http log file?

Posted: 22 Dec 2017, 09:10
by Lapo
Open the jetty.xml file under www/cfg/
Look for this block of XML, approximately at line 152:

Code: Select all

    <!-- =========================================================== -->
    <!-- Configure Request Log                                       -->
    <!-- =========================================================== -->
    <Ref id="requestLog">
      <Set name="requestLog">
        <New id="requestLogImpl" class="org.mortbay.jetty.NCSARequestLog">
          <Arg><SystemProperty name="jetty.logs" default="./logs"/>/yyyy_mm_dd.request.log</Arg>
          <Set name="retainDays">90</Set>
          <Set name="append">true</Set>
          <Set name="extended">false</Set>
          <Set name="LogTimeZone">GMT</Set>
        </New>
      </Set>
    </Ref>

Here you can change location, name and a few other parameters.

Hope it helps

Re: How to change the http log file?

Posted: 22 Dec 2017, 09:45
by khanhdev
Lapo wrote:Open the jetty.xml file under www/cfg/
Look for this block of XML, approximately at line 152:

Code: Select all

    <!-- =========================================================== -->
    <!-- Configure Request Log                                       -->
    <!-- =========================================================== -->
    <Ref id="requestLog">
      <Set name="requestLog">
        <New id="requestLogImpl" class="org.mortbay.jetty.NCSARequestLog">
          <Arg><SystemProperty name="jetty.logs" default="./logs"/>/yyyy_mm_dd.request.log</Arg>
          <Set name="retainDays">90</Set>
          <Set name="append">true</Set>
          <Set name="extended">false</Set>
          <Set name="LogTimeZone">GMT</Set>
        </New>
      </Set>
    </Ref>

Here you can change location, name and a few other parameters.

Hope it helps


thank you very much!