| 1234567891011121314151617181920212223242526272829303132333435 | ## Licensed under the Apache License, Version 2.0 (the "License");# you may not use this file except in compliance with the License.# You may obtain a copy of the License at##    http://www.apache.org/licenses/LICENSE-2.0## Unless required by applicable law or agreed to in writing, software# distributed under the License is distributed on an "AS IS" BASIS,# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.# See the License for the specific language governing permissions and# limitations under the License. See accompanying LICENSE file.## If the Java System property 'httpfs.log.dir' is not defined at HttpFSServer start up time# Setup sets its value to '${httpfs.home}/logs'log4j.appender.httpfs=org.apache.log4j.DailyRollingFileAppenderlog4j.appender.httpfs.DatePattern='.'yyyy-MM-ddlog4j.appender.httpfs.File=${httpfs.log.dir}/httpfs.loglog4j.appender.httpfs.Append=truelog4j.appender.httpfs.layout=org.apache.log4j.PatternLayoutlog4j.appender.httpfs.layout.ConversionPattern=%d{ISO8601} %5p %c{1} [%X{hostname}][%X{user}:%X{doAs}] %X{op} %m%nlog4j.appender.httpfsaudit=org.apache.log4j.DailyRollingFileAppenderlog4j.appender.httpfsaudit.DatePattern='.'yyyy-MM-ddlog4j.appender.httpfsaudit.File=${httpfs.log.dir}/httpfs-audit.loglog4j.appender.httpfsaudit.Append=truelog4j.appender.httpfsaudit.layout=org.apache.log4j.PatternLayoutlog4j.appender.httpfsaudit.layout.ConversionPattern=%d{ISO8601} %5p [%X{hostname}][%X{user}:%X{doAs}] %X{op} %m%nlog4j.logger.httpfsaudit=INFO, httpfsauditlog4j.logger.org.apache.hadoop.fs.http.server=INFO, httpfslog4j.logger.org.apache.hadoop.lib=INFO, httpfs
 |