I noticed in our message log that every event is producing 2x duplicate messages in the log - which is dramatically increasing our log file size :p
...below is our tm1 log properties file - am trying to figure out if there is any parameter in there that is causing the messages to duplicate... so if anyone has any ideas, please let me know

thanks!
Matt
Code: Select all
#
# Enable INFO level logging through the shared memory appender, by default. The server
# will write informational messages, as well as errors and warnings to the log file.
#
#
log4j.rootLogger=INFO, S1
log4j.logger.TM1=INFO, S1
# S1 is set to be a SharedMemoryAppender
log4j.appender.S1=org.apache.log4j.SharedMemoryAppender
log4j.appender.S1.File=tm1server.log
# Specify the size of the shared memory segment
log4j.appender.S1.MemorySize=5 MB
# Specify the max filesize
log4j.appender.S1.MaxFileSize=20 MB
# Specify the max backup index
log4j.appender.S1.MaxBackupIndex=20
# S1 uses PatternLayout
log4j.appender.S1.layout=org.apache.log4j.PatternLayout
log4j.appender.S1.layout.ConversionPattern=%t %p %d{%Y-%m-%d %H:%M:%S,%Q} %c %m%n
# Specify GMT or Local timezone
log4j.appender.S1.TimeZone=Local