Advertisement
Guest User

Untitled

a guest
Nov 18th, 2021
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 25.47 KB | None | 0 0
  1. #####################################################
  2. # LOGGING LEVELS
  3. #####################################################
  4.  
  5. # To turn more verbose logging on - change "WARN" to "DEBUG"
  6.  
  7. log4j.rootLogger=WARN, console, filelog
  8.  
  9. #####################################################
  10. # LOG FILE LOCATIONS
  11. #####################################################
  12.  
  13. log4j.appender.console=org.apache.log4j.ConsoleAppender
  14. log4j.appender.console.Threshold=DEBUG
  15. log4j.appender.console.layout=org.apache.log4j.PatternLayout
  16. log4j.appender.console.layout.ConversionPattern=%d %t %p %X{jira.username} %X{jira.request.id} %X{jira.request.assession.id} %X{jira.request.ipaddr} %X{jira.request.url} [%c{4}] %m%n
  17. log4j.appender.nowarnconsole=org.apache.log4j.ConsoleAppender
  18. log4j.appender.nowarnconsole.Threshold=DEBUG
  19. log4j.appender.nowarnconsole.layout=org.apache.log4j.PatternLayout
  20. log4j.appender.nowarnconsole.layout.ConversionPattern=%d %t %p %X{jira.username} %X{jira.request.id} %X{jira.request.assession.id} %X{jira.request.ipaddr} %X{jira.request.url} [%c{4}] %m%n
  21.  
  22.  
  23. log4j.appender.filelog=com.atlassian.jira.logging.JiraHomeAppender
  24. log4j.appender.filelog.File=atlassian-jira.log
  25. log4j.appender.filelog.MaxFileSize=20480KB
  26. log4j.appender.filelog.MaxBackupIndex=5
  27. log4j.appender.filelog.layout=com.atlassian.logging.log4j.FilteredPatternLayout
  28. log4j.appender.filelog.layout.ConversionPattern=%d %t %p %X{jira.username} %X{jira.request.id} %X{jira.request.assession.id} %X{jira.request.ipaddr} %X{jira.request.url} [%c{4}] %m%n
  29. log4j.appender.filelog.layout.MinimumLines=6
  30. log4j.appender.filelog.layout.FilteringApplied=true
  31. log4j.appender.filelog.layout.ShowEludedSummary=true
  32. #
  33. # These are the Java stack frames that will be filtered out when an exception is logged. This is to help reduce the
  34. # noise to information ratio in the JIRA logs. Its a long comma seperated list with .properties line continuation
  35. # provided by the / character.
  36. #
  37. # It will always how the 'MinimumLines' value above regardless of these settings. Also DEBUG level stack traces will always
  38. # be shown in their entirety.
  39. #
  40. # You can quickly revert to full stack traces by setting 'FilteringApplied'=false above or by removing the lines below
  41. # and restarting JIRA.
  42. #
  43. log4j.appender.filelog.layout.FilteredFrames=\
  44. sun.reflect, \
  45. \
  46. org.apache.catalina, \
  47. org.apache.coyote, \
  48. org.apache.tomcat.util.net, \
  49. org.apache.catalina.core.ApplicationFilterChain, \
  50. \
  51. webwork.interceptor, \
  52. webwork.dispatcher, \
  53. webwork.action.ActionSupport, \
  54. com.opensymphony.sitemesh, \
  55. \
  56. com.sun.jersey.server.impl, \
  57. com.sun.jersey.spi.container.servlet, \
  58. \
  59. com.atlassian.jira.web.dispatcher, \
  60. com.atlassian.jira.web.filters, \
  61. com.atlassian.jira.web.filters.steps, \
  62. com.atlassian.jira.startup.JiraStartupChecklistFilter, \
  63. com.atlassian.jira.security.xsrf.XsrfTokenAdditionRequestFilter, \
  64. \
  65. com.atlassian.seraph.filter, \
  66. com.atlassian.security.auth.trustedapps.filter, \
  67. com.atlassian.plugin.servlet.filter, \
  68. com.atlassian.plugins.rest.common, \
  69. com.atlassian.core.filters, \
  70. com.atlassian.util.profiling.filters, \
  71. com.atlassian.johnson.filters, \
  72. \
  73. com.atlassian.gzipfilter.GzipFilter, \
  74. com.atlassian.applinks.core.rest.context.ContextFilter, \
  75. com.atlassian.plugins.rest.module.servlet.RestServletUtilsUpdaterFilter, \
  76. com.atlassian.oauth.serviceprovider.internal.servlet.OAuthFilter, \
  77. \
  78. org.tuckey.web.filters.urlrewrite.UrlRewriteFilter, \
  79. com.sysbliss.jira.plugins.workflow.servlet.JWDSendRedirectFilter, \
  80.  
  81.  
  82.  
  83. log4j.appender.soapaccesslog=com.atlassian.jira.logging.JiraHomeAppender
  84. log4j.appender.soapaccesslog.File=atlassian-jira-soap-access.log
  85. log4j.appender.soapaccesslog.MaxFileSize=20480KB
  86. log4j.appender.soapaccesslog.MaxBackupIndex=5
  87. log4j.appender.soapaccesslog.layout=org.apache.log4j.PatternLayout
  88. log4j.appender.soapaccesslog.layout.ConversionPattern=%m%n
  89.  
  90. log4j.appender.soapdumplog=com.atlassian.jira.logging.JiraHomeAppender
  91. log4j.appender.soapdumplog.File=atlassian-jira-soap-dump.log
  92. log4j.appender.soapdumplog.MaxFileSize=20480KB
  93. log4j.appender.soapdumplog.MaxBackupIndex=5
  94. log4j.appender.soapdumplog.layout=org.apache.log4j.PatternLayout
  95. log4j.appender.soapdumplog.layout.ConversionPattern=%m%n
  96.  
  97. log4j.appender.httpaccesslog=com.atlassian.jira.logging.JiraHomeAppender
  98. log4j.appender.httpaccesslog.File=atlassian-jira-http-access.log
  99. log4j.appender.httpaccesslog.MaxFileSize=20480KB
  100. log4j.appender.httpaccesslog.MaxBackupIndex=5
  101. log4j.appender.httpaccesslog.layout=org.apache.log4j.PatternLayout
  102. log4j.appender.httpaccesslog.layout.ConversionPattern=%m%n
  103.  
  104. log4j.appender.httpdumplog=com.atlassian.jira.logging.JiraHomeAppender
  105. log4j.appender.httpdumplog.File=atlassian-jira-http-dump.log
  106. log4j.appender.httpdumplog.MaxFileSize=20480KB
  107. log4j.appender.httpdumplog.MaxBackupIndex=5
  108. log4j.appender.httpdumplog.layout=org.apache.log4j.PatternLayout
  109. log4j.appender.httpdumplog.layout.ConversionPattern=%m%n
  110.  
  111. log4j.appender.sqllog=com.atlassian.jira.logging.JiraHomeAppender
  112. log4j.appender.sqllog.File=atlassian-jira-sql.log
  113. log4j.appender.sqllog.MaxFileSize=20480KB
  114. log4j.appender.sqllog.MaxBackupIndex=5
  115. log4j.appender.sqllog.layout=org.apache.log4j.PatternLayout
  116. log4j.appender.sqllog.layout.ConversionPattern=%d %t %X{jira.username} %X{jira.request.id} %X{jira.request.assession.id} %X{jira.request.url} %m%n
  117.  
  118. log4j.appender.slowquerylog=com.atlassian.jira.logging.JiraHomeAppender
  119. log4j.appender.slowquerylog.File=atlassian-jira-slow-queries.log
  120. log4j.appender.slowquerylog.MaxFileSize=20480KB
  121. log4j.appender.slowquerylog.MaxBackupIndex=5
  122. log4j.appender.slowquerylog.layout=org.apache.log4j.PatternLayout
  123. log4j.appender.slowquerylog.layout.ConversionPattern=%d %t %p %X{jira.username} %X{jira.request.id} %X{jira.request.assession.id} %X{jira.request.url} [%c{4}] %m%n
  124.  
  125. log4j.appender.xsrflog=com.atlassian.jira.logging.JiraHomeAppender
  126. log4j.appender.xsrflog.File=atlassian-jira-xsrf.log
  127. log4j.appender.xsrflog.MaxFileSize=20480KB
  128. log4j.appender.xsrflog.MaxBackupIndex=5
  129. log4j.appender.xsrflog.layout=org.apache.log4j.PatternLayout
  130. log4j.appender.xsrflog.layout.ConversionPattern=%d %t %X{jira.username} %X{jira.request.id} %X{jira.request.assession.id} %X{jira.request.url} %m%n
  131.  
  132. log4j.appender.securitylog=com.atlassian.jira.logging.JiraHomeAppender
  133. log4j.appender.securitylog.File=atlassian-jira-security.log
  134. log4j.appender.securitylog.MaxFileSize=20480KB
  135. log4j.appender.securitylog.MaxBackupIndex=5
  136. log4j.appender.securitylog.layout=org.apache.log4j.PatternLayout
  137. log4j.appender.securitylog.layout.ConversionPattern=%d %t %X{jira.username} %X{jira.request.id} %X{jira.request.assession.id} %X{jira.request.ipaddr} %X{jira.request.url} %m%n
  138.  
  139. log4j.appender.outgoingmaillog=com.atlassian.jira.logging.JiraHomeAppender
  140. log4j.appender.outgoingmaillog.File=atlassian-jira-outgoing-mail.log
  141. log4j.appender.outgoingmaillog.MaxFileSize=20480KB
  142. log4j.appender.outgoingmaillog.MaxBackupIndex=5
  143. log4j.appender.outgoingmaillog.layout=org.apache.log4j.PatternLayout
  144. log4j.appender.outgoingmaillog.layout.ConversionPattern=%d %p [%X{jira.mailserver}] %t %X{jira.username} %X{jira.request.id} %X{jira.request.assession.id} %X{jira.request.ipaddr} %X{jira.request.url} %m%n
  145.  
  146. log4j.appender.incomingmaillog=com.atlassian.jira.logging.JiraHomeAppender
  147. log4j.appender.incomingmaillog.File=atlassian-jira-incoming-mail.log
  148. log4j.appender.incomingmaillog.MaxFileSize=20480KB
  149. log4j.appender.incomingmaillog.MaxBackupIndex=5
  150. log4j.appender.incomingmaillog.layout=org.apache.log4j.PatternLayout
  151. log4j.appender.incomingmaillog.layout.ConversionPattern=%d %p [%X{jira.mailserver}] %t %X{jira.username} %X{jira.request.id} %X{jira.request.assession.id} %X{jira.request.ipaddr} %X{jira.request.url} %m%n
  152.  
  153. log4j.appender.remoteappssecurity=com.atlassian.jira.logging.JiraHomeAppender
  154. log4j.appender.remoteappssecurity.File=atlassian-remoteapps-security.log
  155. log4j.appender.remoteappssecurity.MaxFileSize=20480KB
  156. log4j.appender.remoteappssecurity.MaxBackupIndex=5
  157. log4j.appender.remoteappssecurity.layout=org.apache.log4j.PatternLayout
  158. log4j.appender.remoteappssecurity.layout.ConversionPattern=%d %t %p %X{jira.username} %X{jira.request.id} %X{jira.request.assession.id} %X{jira.request.ipaddr} %X{jira.request.url} [%c{4}] %m%n
  159.  
  160. #####################################################
  161. # Log Marking
  162. #####################################################
  163.  
  164. log4j.logger.com.atlassian.jira.util.log.LogMarker = INFO, console, filelog, soapaccesslog, soapdumplog, httpaccesslog, httpdumplog, sqllog, slowquerylog, xsrflog, securitylog, outgoingmaillog, incomingmaillog, remoteappssecurity
  165. log4j.additivity.com.atlassian.jira.util.log.LogMarker = false
  166.  
  167.  
  168. #####################################################
  169. # Access logs
  170. #####################################################
  171.  
  172. log4j.logger.com.atlassian.jira.soap.axis.JiraAxisSoapLog = OFF, soapaccesslog
  173. log4j.additivity.com.atlassian.jira.soap.axis.JiraAxisSoapLog = false
  174.  
  175. log4j.logger.com.atlassian.jira.soap.axis.JiraAxisSoapLogDump = OFF, soapdumplog
  176. log4j.additivity.com.atlassian.jira.soap.axis.JiraAxisSoapLogDump = false
  177.  
  178. log4j.logger.com.atlassian.jira.web.filters.accesslog.AccessLogFilter = OFF, httpaccesslog
  179. log4j.additivity.com.atlassian.jira.web.filters.accesslog.AccessLogFilter = false
  180.  
  181. log4j.logger.com.atlassian.jira.web.filters.accesslog.AccessLogFilterIncludeImages = OFF, httpaccesslog
  182. log4j.additivity.com.atlassian.jira.web.filters.accesslog.AccessLogFilterIncludeImages = false
  183.  
  184. log4j.logger.com.atlassian.jira.web.filters.accesslog.AccessLogFilterDump = OFF, httpdumplog
  185. log4j.additivity.com.atlassian.jira.web.filters.accesslog.AccessLogFilterDump = false
  186.  
  187. #####################################################
  188. # SQL logs
  189. #####################################################
  190. #
  191. # Beware of turning this log level on. At INFO level it will log every SQL statement
  192. # and at DEBUG level it will also log the calling stack trace. Turning this on will DEGRADE your
  193. # JIRA database throughput.
  194. #
  195. log4j.logger.com.atlassian.jira.ofbiz.LoggingSQLInterceptor = OFF, sqllog
  196. log4j.additivity.com.atlassian.jira.ofbiz.LoggingSQLInterceptor = false
  197.  
  198. log4j.logger.com.atlassian.jira.security.xsrf.XsrfVulnerabilityDetectionSQLInterceptor = OFF, xsrflog
  199. log4j.additivity.com.atlassian.jira.security.xsrf.XsrfVulnerabilityDetectionSQLInterceptor = false
  200.  
  201.  
  202. #####################################################
  203. # Security logs
  204. #####################################################
  205.  
  206. log4j.logger.com.atlassian.jira.login.security = INFO, securitylog
  207. log4j.additivity.com.atlassian.jira.login.security = false
  208.  
  209. #
  210. #
  211. # The following log levels can be useful to set when login problems occur within JIRA
  212. #
  213. log4j.logger.com.atlassian.jira.login = WARN, securitylog
  214. log4j.additivity.com.atlassian.jira.login = false
  215.  
  216. log4j.logger.com.atlassian.jira.web.session.currentusers = WARN, securitylog
  217. log4j.additivity.com.atlassian.jira.web.session.currentusers = false
  218.  
  219. #
  220. # BEWARE - Turning on Seraph debug logs will result in many logs lines per web request.
  221. #
  222. log4j.logger.com.atlassian.seraph = WARN, securitylog
  223. log4j.additivity.com.atlassian.seraph = false
  224.  
  225. #
  226. #---------------
  227.  
  228. #####################################################
  229. # CLASS-SPECIFIC LOGGING LEVELS
  230. #####################################################
  231. # This stuff you may wish to debug, but it produces a high volume of logs.
  232. # Uncomment only if you want to debug something particular
  233.  
  234. log4j.logger.com.atlassian = WARN, console, filelog
  235. log4j.additivity.com.atlassian = false
  236.  
  237. log4j.logger.com.atlassian.jira = INFO, console, filelog
  238. log4j.additivity.com.atlassian.jira = false
  239.  
  240. log4j.logger.com.atlassian.plugin = INFO, console, filelog
  241. log4j.additivity.com.atlassian.plugin = false
  242.  
  243. log4j.logger.atlassian.plugin = INFO, console, filelog
  244. log4j.additivity.atlassian.plugin = false
  245.  
  246. log4j.logger.org.twdata.pkgscanner = WARN, console, filelog
  247. log4j.additivity.org.twdata.pkgscanner = false
  248.  
  249. log4j.logger.com.atlassian.plugin.osgi.factory = WARN, console, filelog
  250. log4j.additivity.com.atlassian.plugin.osgi.factory = false
  251.  
  252. log4j.logger.com.atlassian.plugin.osgi.container = WARN, console, filelog
  253. log4j.additivity.com.atlassian.plugin.osgi.container = false
  254.  
  255. log4j.logger.org.apache.shindig = ERROR, console, filelog
  256. log4j.additivity.org.apache.shindig = false
  257.  
  258. log4j.logger.com.atlassian.gadgets = WARN, console, filelog
  259. log4j.additivity.com.atlassian.gadgets = false
  260.  
  261. log4j.logger.com.atlassian.jira.gadgets.system.MarketingGadgetSpecProvider = INFO, console, filelog
  262. log4j.additivity.com.atlassian.jira.gadgets.system.MarketingGadgetSpecProvider = false
  263.  
  264. # The directory may produce errors of interest to admins when adding gadgets with features that aren't supported
  265. # (for example).
  266. log4j.logger.com.atlassian.gadgets.directory = INFO, console, filelog
  267. log4j.additivity.com.atlassian.gadgets.directory = false
  268.  
  269. # Felix annoyingly dumps some pretty silly INFO level messages. So we have to set logging to WARN here. Means
  270. # we miss out on some useful startup logging. Should probably remove this if Felix ever fix this.
  271. log4j.logger.com.atlassian.plugin.osgi.container.felix.FelixOsgiContainerManager = WARN, console, filelog
  272. log4j.additivity.com.atlassian.plugin.osgi.container.felix.FelixOsgiContainerManager = false
  273.  
  274. log4j.logger.com.atlassian.plugin.servlet = WARN, console, filelog
  275. log4j.additivity.com.atlassian.plugin.servlet = false
  276.  
  277. log4j.logger.com.atlassian.plugin.classloader = WARN, console, filelog
  278. log4j.additivity.com.atlassian.plugin.classloader = false
  279.  
  280. log4j.logger.com.atlassian.jira.util.system.JiraSystemRestarterImpl = INFO, console, filelog
  281. log4j.additivity.com.atlassian.jira.util.system.JiraSystemRestarterImpl = false
  282.  
  283. log4j.logger.com.atlassian.jira.upgrade = INFO, console, filelog
  284. log4j.additivity.com.atlassian.jira.upgrade = false
  285.  
  286. log4j.logger.com.atlassian.jira.startup = INFO, console, filelog
  287. log4j.additivity.com.atlassian.jira.startup = false
  288.  
  289. log4j.logger.com.atlassian.jira.config.database = INFO, console, filelog
  290. log4j.additivity.com.atlassian.jira.config.database = false
  291.  
  292. log4j.logger.com.atlassian.jira.web.action.util.LDAPConfigurer = INFO, console, filelog
  293. log4j.additivity.com.atlassian.jira.web.action.util.LDAPConfigurer = false
  294.  
  295. log4j.logger.com.atlassian.jira.imports = INFO, console, filelog
  296. log4j.additivity.com.atlassian.jira.imports = false
  297.  
  298. log4j.logger.com.atlassian.jira.plugin = INFO, console, filelog
  299. log4j.additivity.com.atlassian.jira.plugin = false
  300.  
  301. log4j.logger.com.atlassian.jira.bc.dataimport = INFO, console, filelog
  302. log4j.additivity.com.atlassian.jira.bc.dataimport = false
  303.  
  304. log4j.logger.com.atlassian.jira.security = INFO, console, filelog
  305. log4j.additivity.com.atlassian.jira.security = false
  306.  
  307. log4j.logger.com.atlassian.jira.issue.index = INFO, console, filelog
  308. log4j.additivity.com.atlassian.jira.issue.index = false
  309.  
  310. # DefaultIndexManager should run at INFO level, because we want to see messages when we force an optimise etc.
  311. log4j.logger.com.atlassian.jira.issue.index.DefaultIndexManager = INFO, console, filelog
  312. log4j.additivity.com.atlassian.jira.issue.index.DefaultIndexManager = false
  313.  
  314. # Allow the optimise job to log at info level so that we can see the last time it ran
  315. log4j.logger.com.atlassian.jira.issue.index.job.OptimizeIndexJob = INFO, console, filelog
  316. log4j.additivity.com.atlassian.jira.issue.index.job.OptimizeIndexJob = false
  317.  
  318. # Allow the Composite IndexLifecycleManager to log info
  319. log4j.logger.com.atlassian.jira.util.index = INFO, console, filelog
  320. log4j.additivity.com.atlassian.jira.util.index = false
  321.  
  322. log4j.logger.com.atlassian.jira.project = INFO, console, filelog
  323. log4j.additivity.com.atlassian.jira.project = false
  324.  
  325. log4j.logger.com.atlassian.jira.project.version = INFO, console, filelog
  326. log4j.additivity.com.atlassian.jira.project.version = false
  327.  
  328. log4j.logger.com.atlassian.jira.user.job.RefreshActiveUserCountJob = INFO, console, filelog
  329. log4j.additivity.com.atlassian.jira.user.job.RefreshActiveUserCountJob = false
  330.  
  331. log4j.logger.com.atlassian.jira.issue.search.providers = INFO, console, filelog
  332. log4j.additivity.com.atlassian.jira.issue.search.providers = false
  333.  
  334. log4j.logger.com.atlassian.jira.issue.search.providers.LuceneSearchProvider_SLOW = INFO, slowquerylog
  335. log4j.additivity.com.atlassian.jira.issue.search.providers.LuceneSearchProvider_SLOW = false
  336.  
  337. log4j.logger.com.atlassian.jira.action.admin = INFO, console, filelog
  338. log4j.additivity.com.atlassian.jira.action.admin = false
  339.  
  340. log4j.logger.com.opensymphony = WARN, console, filelog
  341. log4j.additivity.com.opensymphony = false
  342.  
  343. log4j.logger.com.atlassian.jira.user = INFO, console, filelog
  344. log4j.additivity.com.atlassian.jira.user = false
  345.  
  346. log4j.logger.com.atlassian.jira.bc.user = INFO, console, filelog
  347. log4j.additivity.com.atlassian.jira.bc.user = false
  348.  
  349. log4j.logger.com.atlassian.jira.workflow = INFO, console, filelog
  350. log4j.additivity.com.atlassian.jira.workflow = false
  351.  
  352. log4j.logger.com.atlassian.jira.service = INFO, console, filelog
  353. log4j.additivity.com.atlassian.jira.service = false
  354.  
  355. log4j.logger.com.atlassian.jira.service.services.DebugService = DEBUG, console, filelog
  356. log4j.additivity.com.atlassian.jira.service.services.DebugService = false
  357.  
  358. log4j.logger.com.atlassian.jira.web.dispatcher.JiraWebworkActionDispatcher = WARN, nowarnconsole, filelog
  359. log4j.additivity.com.atlassian.jira.web.dispatcher.JiraWebworkActionDispatcher = false
  360. log4j.logger.webwork = WARN, console, filelog
  361. log4j.additivity.webwork = false
  362.  
  363. log4j.logger.webwork.util.ServletValueStack = WARN, console, filelog
  364.  
  365. log4j.logger.org.ofbiz.core.entity.jdbc.DatabaseUtil = INFO, nowarnconsole, filelog
  366. log4j.additivity.org.ofbiz.core.entity.jdbc.DatabaseUtil = false
  367. log4j.logger.org.ofbiz = WARN, console, filelog
  368. log4j.additivity.org.ofbiz = false
  369.  
  370. log4j.logger.com.atlassian.jira.web.servlet.rpc = INFO, console, filelog
  371. log4j.additivity.com.atlassian.jira.web.servlet.rpc = false
  372. log4j.logger.com.atlassian.jira.soap = INFO, console, filelog
  373. log4j.additivity.com.atlassian.jira.soap = false
  374. log4j.logger.com.atlassian.jira.rpc = INFO, console, filelog
  375. log4j.additivity.com.atlassian.jira.rpc = false
  376.  
  377. log4j.logger.com.atlassian.jira.plugin.ext.perforce = INFO, console, filelog
  378. log4j.additivity.com.atlassian.jira.plugin.ext.perforce = false
  379.  
  380. log4j.logger.jelly = INFO, console, filelog
  381. log4j.additivity.jelly = false
  382.  
  383. log4j.logger.logMessage.jsp = INFO, console, filelog
  384. log4j.additivity.logMessage.jsp = false
  385.  
  386. log4j.logger.com.atlassian.jira.issue.views = INFO, console, filelog
  387. log4j.additivity.com.atlassian.jira.issue.views = false
  388.  
  389. # Project Imports should be logged at INFO level so we can see the steps running.
  390. log4j.logger.com.atlassian.jira.imports.project = INFO, console, filelog
  391. log4j.additivity.com.atlassian.jira.imports.project = false
  392.  
  393. log4j.logger.com.atlassian.jira.plugin.userformat.DefaultUserFormats = INFO, console, filelog
  394. log4j.additivity.com.atlassian.jira.plugin.userformat.DefaultUserFormats = false
  395.  
  396. log4j.logger.com.atlassian.jira.scheduler.JiraSchedulerLauncher = INFO, console, filelog
  397. log4j.additivity.com.atlassian.jira.scheduler.JiraSchedulerLauncher = false
  398.  
  399. log4j.logger.com.atlassian.sal.jira.scheduling = INFO, console, filelog
  400. log4j.additivity.com.atlassian.sal.jira.scheduling = false
  401.  
  402. #####################################################
  403. # Crowd Embedded
  404. #####################################################
  405.  
  406. # We want to get INFO level logs about Directory events
  407. log4j.logger.com.atlassian.crowd.directory = INFO, console, filelog
  408. log4j.additivity.com.atlassian.crowd.directory = false
  409.  
  410. #####################################################
  411. # REST
  412. #####################################################
  413.  
  414. # only show WARN for WADL generation doclet
  415. log4j.logger.com.atlassian.plugins.rest.doclet = WARN, console, filelog
  416. log4j.additivity.com.atlassian.plugins.rest.doclet = false
  417.  
  418. # JRADEV-12012: suppress irrelevant warnings.
  419. log4j.logger.com.sun.jersey.spi.container.servlet.WebComponent = ERROR, console, filelog
  420. log4j.additivity.com.sun.jersey.spi.container.servlet.WebComponent = false
  421.  
  422. #####################################################
  423. # JQL
  424. #####################################################
  425.  
  426. log4j.logger.com.atlassian.jira.jql = INFO, console, filelog
  427. log4j.additivity.com.atlassian.jira.jql = false
  428.  
  429. log4j.logger.com.atlassian.jira.jql.resolver = INFO, console, filelog
  430. log4j.additivity.com.atlassian.jira.jql.resolver = false
  431.  
  432. #####################################################
  433. # UAL
  434. #####################################################
  435.  
  436. log4j.logger.com.atlassian.applinks = WARN, console, filelog
  437. log4j.additivity.com.atlassian.applinks = false
  438.  
  439. #####################################################
  440. # ActiveObjects
  441. #####################################################
  442.  
  443. log4j.logger.net.java.ao = WARN, console, filelog
  444. log4j.additivity.net.java.ao = false
  445.  
  446. log4j.logger.net.java.ao.sql = WARN, console, filelog
  447. log4j.additivity.net.java.ao.sql = false
  448.  
  449. #####################################################
  450. # Long Running Tasks
  451. #####################################################
  452.  
  453. log4j.logger.com.atlassian.jira.workflow.migration = INFO, console, filelog
  454. log4j.additivity.com.atlassian.jira.workflow.migration = false
  455.  
  456. log4j.logger.com.atlassian.jira.web.action.admin.index.IndexAdminImpl = INFO, console, filelog
  457. log4j.additivity.com.atlassian.jira.web.action.admin.index.IndexAdminImpl = false
  458.  
  459. #####################################################
  460. # PROFILING
  461. #####################################################
  462.  
  463. log4j.logger.com.atlassian.util.profiling.filters = INFO, console, filelog
  464. log4j.additivity.com.atlassian.util.profiling.filters = false
  465.  
  466. log4j.logger.com.atlassian.util.profiling = DEBUG, console, filelog
  467. log4j.additivity.com.atlassian.util.profiling = false
  468.  
  469. log4j.logger.com.atlassian.jira.web.filters.ThreadLocalQueryProfiler = DEBUG, console, filelog
  470. log4j.additivity.com.atlassian.jira.web.filters.ThreadLocalQueryProfiler = false
  471.  
  472. #
  473. # By default we ignore some usually harmless exception such as Client Abort Exceptions. However
  474. # if this proves problematic then we can turn this to DEBUG log on.
  475. #
  476. log4j.logger.com.atlassian.jira.web.exception.WebExceptionChecker = OFF, console, filelog
  477. log4j.additivity.com.atlassian.jira.web.exception.WebExceptionChecker = false
  478.  
  479. #
  480. # Errors in the logs occur at this logger if the user cancels a form upload. The actual exception
  481. # is rethrown and dealt with elsewhere so there is no need to keep these logs around.
  482. #
  483. log4j.logger.webwork.multipart.MultiPartRequestWrapper = OFF, console, filelog
  484. log4j.additivity.webwork.multipart.MultiPartRequestWrapper = false
  485.  
  486. log4j.logger.com.atlassian.jira.plugins.monitor = INFO, console, filelog
  487. log4j.additivity.com.atlassian.jira.plugins.monitor = false
  488.  
  489. #####################################################
  490. # Mails
  491. #####################################################
  492.  
  493. #
  494. # outgoing mail log includes also some logging information from classes which handle both incoming and outgoing mails
  495. # that's why the appender is configured at com.atlassian.mail level (not com.atlassian.mail.outgoing)
  496. #
  497. log4j.logger.com.atlassian.mail = INFO, console, outgoingmaillog
  498. log4j.additivity.com.atlassian.mail = false
  499.  
  500. log4j.logger.com.atlassian.mail.incoming = INFO, console, incomingmaillog
  501. log4j.additivity.com.atlassian.mail.incoming = false
  502.  
  503. # changes in mail settings need to be logged
  504. log4j.logger.com.atlassian.jira.mail.settings.MailSetting = INFO, console, filelog
  505. log4j.additivity.com.atlassian.jira.mail.settings.MailSetting = false
  506.  
  507. #
  508. # Need to ensure that the actual discovery of duplicates is logged
  509. #
  510. log4j.logger.com.atlassian.jira.upgrade.tasks.UpgradeTask_Build663 = INFO, console, filelog
  511. log4j.additivity.com.atlassian.jira.upgrade.tasks.UpgradeTask_Build663 = false
  512.  
  513. # JRADEV-19240: Suppress useless warnings (will be fixed in atlassian-soy-templates-2.0.0, see SOY-18)
  514. log4j.logger.com.atlassian.soy.impl.GetTextFunction = ERROR, console, filelog
  515. log4j.additivity.com.atlassian.soy.impl.GetTextFunction = false
  516.  
  517. # JRADEV-19613: Remote should log security messages to a separate log file
  518. log4j.logger.com.atlassian.plugin.remotable.plugin.module.oauth.OAuth2LOAuthenticator = INFO, console, remoteappssecurity
  519. log4j.additivity.com.atlassian.plugin.remotable.plugin.module.oauth.OAuth2LOAuthenticator = false
  520.  
  521. log4j.logger.com.atlassian.plugin.remotable.plugin.module.permission.ApiScopingFilter = INFO, console, remoteappssecurity
  522. log4j.additivity.com.atlassian.plugin.remotable.plugin.module.permission.ApiScopingFilter = false
  523.  
  524. log4j.logger.com.atlassian.plugin.remotable.plugin.OAuthLinkManager = INFO, console, remoteappssecurity
  525. log4j.additivity.com.atlassian.plugin.remotable.plugin.OAuthLinkManager = false
  526.  
  527. log4j.logger.com.atlassian.plugin.remotable.plugin.util.http.CachingHttpContentRetriever = INFO, console, remoteappssecurity
  528. log4j.additivity.com.atlassian.plugin.remotable.plugin.util.http.CachingHttpContentRetriever = false
  529.  
  530. log4j.logger.com.atlassian.plugin.remotable.plugin.service.LocalSignedRequestHandler = INFO, console, remoteappssecurity
  531. log4j.additivity.com.atlassian.plugin.remotable.plugin.service.LocalSignedRequestHandler = false
  532.  
  533. log4j.logger.com.atlassian.plugin.remotable.host.common.service.http.bigpipe.DefaultBigPipeManager = INFO, console, remoteappssecurity
  534. log4j.additivity.com.atlassian.plugin.remotable.host.common.service.http.bigpipe.DefaultBigPipeManager = false
  535.  
  536. log4j.logger.de.myCompany.mbhBridge.plugin = DEBUG, console, filelog
  537. log4j.additivity.de.myCompany.mbhBridge.plugin = false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement