source: java/main/src/main/resources/configs/log4j.properties @ 84

Last change on this file since 84 was 84, checked in by psniegowski, 11 years ago

HIGHLIGHTS:

  • simplification of entities management model
  • cleanup around params (improve hierarchy)
  • migrate from JUnit to TestNG
  • introduce FEST to automatically test GUI
  • improve slider control
  • loosen synchronization between gui tree and backend representation
  • and many other bug fixes

NOTICE:

  • a great many of lines is changed only because of substituting spaces with tabs

CHANGELOG (oldest changes at the bottom):

Some cleaning after fix found.

Fix bug with tree.

More changes with TreeNodes?.

Finally fix issue with tree.

Improve gui tree management.

Decouple update of values from fetch request in gui.

Minor changes.

Minor changes.

Minor change.

Change Path construction wording.

More fixes to SliderControl?.

Fix SliderControl?.

Fix SliderControl?.

Minor improvement.

Several changes.

Make NumberParam? a generic class.

Add robot to the gui test.

Setup common testing logging configuration.

Remove Parameters class.

Remove entityOwner from Parameters.

Move name out from Parameters class.

Move configuration to after the construction.

Simplify observers and endpoints.

Remove superfluous configureEntity overrides.

Add dependency on fest-swing-testng.

Use FEST for final print test.

Use FEST for more concise and readable assertions.

Divide test of F0Parser into multiple methods.

Migrate to TestNG

Minor change.

Change convention from LOGGER to log.

Fix reporting of errors during controls filling.

Bound maximal height of SliderControl?.

Minor improvements.

Improve tooltips for controls.

Also use Delimeted in more places.

Move static control utilities to Gui.

Rename package gui.components to controls.

Some cleaning in controls.

Improve Param classes placing.

Move ValueParam?, PrimitiveParam? and CompositeParam? one package up.

Improve ParamBuilder?.

Move getDef to ValueParam? and PrimitiveParam?.

Move getMax and getDef to ValueParam?.

Move getMin to ValueParam?.

Upgrade to laters apache commons versions.

Use filterInstanceof extensively.

Add instanceof filters.

Make ValueParam? in many places of Param.

Place assertions about ValueParam?.

Add ValueParam?

Rename ValueParam? to PrimitiveParam?

Minor changes.

Several improvements to params types.

Add NumberParam?.

Add TextControl? component.

Add .swp files to .gitignore

Greatly improved slider component.

Some improvements.

Make Param.reassign return also a state.

Add IterableIterator?.

Several changes.

  • Move util classes to better packages.
  • Remove warnings from eclim.

Several improvements.

Fix bug with BooleanParam?.

Some experiments with visualization.

Another fix to panel management.

Improve panel management.

Some refactorization around panels.

Add root class for panel.

File size: 1.9 KB
Line 
1# -------------------------------------------------------------------
2# Global logger configuration
3# -------------------------------------------------------------------
4#log4j.rootLogger=INFO, STDOUT, FILE
5log4j.rootLogger=DEBUG, STDOUT
6
7
8# -------------------------------------------------------------------
9# Disable certain libraries from spamming the output
10# -------------------------------------------------------------------
11
12# Apache commons
13log4j.logger.org.apache.commons=WARN
14
15# HttpClient
16log4j.logger.httpclient=WARN
17
18
19# -------------------------------------------------------------------
20# Define appenders.
21# -------------------------------------------------------------------
22
23# A plain console appender
24log4j.appender.STDOUT=org.apache.log4j.ConsoleAppender
25log4j.appender.STDOUT.Target=System.out
26log4j.appender.STDOUT.layout=org.apache.log4j.PatternLayout
27log4j.appender.STDOUT.layout.ConversionPattern=%d{ABSOLUTE} [%-5p] [%t] %c -- %m%n
28
29
30log4j.logger.com.framsticks=INFO
31# log4j.logger.com.framsticks.gui.controls.SliderControl=TRACE
32# log4j.logger.com.framsticks.gui.EndpointAtFrame=DEBUG
33# log4j.logger.com.framsticks.gui.TreeNode=DEBUG
34# log4j.logger.com.framsticks.gui.Frame=TRACE
35# log4j.logger.com.framsticks.gui.Browser=DEBUG
36
37#log4j.logger.com.framsticks.gui.Frame=DEBUG
38#log4j.logger.com.framsticks.gui.Browser=DEBUG
39#log4j.logger.com.framsticks.gui.EndpointAtFrame=DEBUG
40#log4j.logger.com.framsticks.remote.RemoteInstance=DEBUG
41#log4j.logger.com.framsticks.gui.TreeNode=DEBUG
42#log4j.logger.com.framsticks.gui.components.CheckBox=DEBUG
43
44#log4j.logger.com.framsticks.core=DEBUG
45#log4j.logger.com.framsticks.gui.TreeNode=TRACE
46#log4j.logger.com.framsticks.gui.ObjectPanel=TRACE
47#log4j.logger.com.framsticks.communication=DEBUG
48#log4j.logger.com.framsticks.communication.ServerConnection=DEBUG
49#log4j.logger.com.framsticks.portals=DEBUG
50#log4j.logger.com.framsticks.gui=DEBUG
51#log4j.logger.com.framsticks.dumping.LoadStream=TRACE
Note: See TracBrowser for help on using the repository browser.