How to change the http log file?
Posted: 22 Dec 2017, 03:35
like the title. help me!
SmartFoxServer support forums
https://forums.smartfoxserver.com:443/
Change the name of the log file and location saved. ThanksLapo 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
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>thank you very much!Lapo wrote:Open the jetty.xml file under www/cfg/
Look for this block of XML, approximately at line 152:
Here you can change location, name and a few other parameters.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>
Hope it helps