You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@druid.apache.org by GitBox <gi...@apache.org> on 2019/01/11 08:23:30 UTC

[GitHub] helianthuslulu commented on issue #6817: 【druid-01.2.3】how to debug druid during ingesting

helianthuslulu commented on issue #6817: 【druid-01.2.3】how to debug druid during ingesting
URL: https://github.com/apache/incubator-druid/issues/6817#issuecomment-453425663
 
 
   `<?xml version="1.0" encoding="UTF-8" ?>
   <Configuration status="WARN">
       <Appenders>
           <Console name="Console" target="SYSTEM_OUT">
               <PatternLayout pattern="%d{ISO8601} %p [%t] %c - %m%n"/>
           </Console>
           <File name="log" target="${DRUID_HOME}/log/*.log" append="false">
               <PatternLayout pattern="%d{ISO8601} %p [%t] %c - %m%n"/>
           </File>
           <RollingFile name="RollingFileInfo" fileName="${DRUID_HOME}/logs/*.log"
                filePattern="${DRUID_HOME}/log/$${date:yyyy-MM}/info-%d{yyyy-MM-dd}-%i.log">
                <ThresholdFilter level="all" onMatch="ACCEPT" onMismatch="DENY"/>
                <PatternLayout pattern="[%d{HH:mm:ss:SSS}] [%p] - %l - %m%n"/>
                <Policies>
                    <TimeBasedTriggeringPolicy/>
                    <SizeBasedTriggeringPolicy size="100 MB"/>
                </Policies>
          </RollingFile>
   
       </Appenders>
       <Loggers>
           <Root level="debug">
               <AppenderRef ref="Console"/>
           </Root>
   <!-- Uncomment to enable logging of all HTTP requests -->
            <Logger name="org.apache.druid.jetty.RequestLog" additivity="false" level="DEBUG">
                <AppenderRef ref="Console"/>
            </Logger>
            <Logger name="org.apache.druid.java.util.emitter.EmittingLogger" additivity="false" level="DEBUG">
            </Logger>    
       </Loggers>
   </Configuration>
   `

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org