Files
Stefan Tollkühn ec74d4a2c1 Initial commit
2025-09-18 14:02:17 +02:00

36 lines
1.6 KiB
Plaintext

#############################################################################
#
# (C) Copyright 2018-2019 by Autodesk, Inc.
#
# The information contained herein is confidential, proprietary to Autodesk,
# Inc., and considered a trade secret as defined in section 499C of the
# penal code of the State of California. Use of this information by anyone
# other than authorized employees of Autodesk, Inc. is granted only under a
# written non-disclosure agreement, expressly prescribing the scope and
# manner of such use.
#
#############################################################################
#
# Name: ad.logconfig
# Description: log4cplus config file
#############################################################################
log4cplus.rootLogger = ALL, logFile
log4cplus.appender.logFile = log4cplus::RollingFileAppender
log4cplus.appender.logFile.File = ${LogPath}
log4cplus.appender.logFile.MaxFileSize = 10MB
log4cplus.appender.logFile.MaxBackupIndex = 8
log4cplus.appender.logFile.UseLockFile = true
log4cplus.appender.logFile.Append = true
log4cplus.appender.logFile.ImmediateFlush = true
log4cplus.appender.logFile.layout = log4cplus::PatternLayout
log4cplus.appender.logFile.layout.ConversionPattern = %D{%Y-%m-%dT%H:%M:%S.%q} [${AppName}: %i, %t] [%c %p] %m%n
log4cplus.appender.logFile.filters.1 = log4cplus::spi::LogLevelRangeFilter
log4cplus.appender.logFile.filters.1.LogLevelMax = FATAL
log4cplus.appender.logFile.filters.1.LogLevelMin = TRACE
log4cplus.appender.logFile.filters.1.AcceptOnMatch = true
log4cplus.appender.logFile.filters.2 = log4cplus::spi::DenyAllFilter