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

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

HIGHLIGTS:

  • complete events implementation
  • add CLI in Java Framsticks server
  • add automatic registration for events in GUI
  • improve objects fetching (object are never overwritten with new instances)
  • properly react for ListChange? events
  • add ListPanel? with table view
    • columns to be shown may be statically specified in configuration
    • currently modyfying data through tables is not available
  • improve maven configuration
    • configuration file may be specified without touching pom.xml

CHANGELOG:
Extract constants from Flags into ParamFlags? and SetStateFlags?.

Extract flags I/O to FlagsUtils? class.

Configured maven to exec given resource configuration.

For example:
mvn exec:exec -Dframsticks.config=/configs/managed-console.xml

Cleanup pom.xml

Rename ObjectTree? to LocalTree? (also make LocalTree? and RemoteTree? final).

Minor change.

Add maximum number of columns in ListPanelProvider?.

Improve ColumnsConfig? interpretation.

Automatically fill FramsClass?.name if trying to construct empty.

Improve identitifer case mangling in XmlLoader?.

Introduce configurable ColumnsConfig?.

Draft working version of ListPanel?.

Table is being shown (although empty).

More improvements to table building.

Move some functionality from Frame to TreeModel?.

Move tree classes in gui to separate package.

Remove old table related classes.

Add draft implementation of TableModel?.

Redirect ParamBuilder?.forAccess to AccessInterface?.

Optimize ParamBuilder?.forAccess()

Do not clear list when loading.

Do not load fetched values directly.

Implement different AccessInterface? copying policy.

Optimize fetching values routine.

Remove Mode enum (work out get semantics).

Some improvements to ListChange? handling.

Improve UniqueListAccess?.

Add reaction for ListChanges? in the TreeNode?.

EventListeners? are being added in the TreeNode?.

Listeners for ListParams? are now very naive (they download
whole list).

Automatially register on events in GUI.

Events are working in RemoteTree? and Server.

Move listeners to the ClientSideManagedConnection?.

Remove old classes responsible for event subscriptions.

Improve event reading.

Improve events handling at server side.

Add register attribute in FramsClassAnnotation?
to automatically also register other classes.

Registering events works.

Setup for remote listeners registration.

More improvements.

Minor changes.

Add rootTree to the ClientAtServer?.

Moving CLI to the ClientAtServer?.

Fix bug: use Void.TYPE instead of Void.class

More development around CLI.

  • Improve Path resolving.

Add synthetic root to ObjectTree?.

It is needed to allow sybling for the original root
that would containg CLI.

Some work with registering events in RemoteTree?.

Draft implementation of listener registering in RemoteTree?.

Support events registration in the ObjectTree?.

Add events support to ReflectionAccess?.

EventParam? is recognized by ParamCandidate?.

Prepare interface for Events across project.

Add EventListener? and API for listeners in Tree.

File size: 2.4 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.table=DEBUG
32# log4j.logger.com.framsticks.gui.Panel=DEBUG
33# log4j.logger.com.framsticks.remote.RemoteTree=DEBUG
34# log4j.logger.com.framsticks.gui.Frame=DEBUG
35# log4j.logger.com.framsticks.gui.controls.ProcedureControl=DEBUG
36# log4j.logger.com.framsticks.params.ReflectionAccess=TRACE
37# log4j.logger.com.framsticks.util.dispatching.Dispatching=DEBUG
38# log4j.logger.com.framsticks.util.dispatching.AbstractJoinable=DEBUG
39# log4j.logger.com.framsticks.util.dispatching.JoinableCollection=DEBUG
40
41# log4j.logger.com.framsticks.gui=DEBUG
42# log4j.logger.com.framsticks.gui.controls.SliderControl=TRACE
43# log4j.logger.com.framsticks.gui.EndpointAtFrame=DEBUG
44# log4j.logger.com.framsticks.gui.TreeNode=DEBUG
45# log4j.logger.com.framsticks.gui.Frame=TRACE
46# log4j.logger.com.framsticks.gui.Browser=DEBUG
47
48#log4j.logger.com.framsticks.gui.Frame=DEBUG
49#log4j.logger.com.framsticks.gui.Browser=DEBUG
50#log4j.logger.com.framsticks.gui.EndpointAtFrame=DEBUG
51#log4j.logger.com.framsticks.gui.TreeNode=DEBUG
52#log4j.logger.com.framsticks.gui.components.CheckBox=DEBUG
53
54#log4j.logger.com.framsticks.core=DEBUG
55#log4j.logger.com.framsticks.gui.TreeNode=TRACE
56#log4j.logger.com.framsticks.gui.ObjectPanel=TRACE
57#log4j.logger.com.framsticks.communication=DEBUG
58#log4j.logger.com.framsticks.communication.ServerConnection=DEBUG
59#log4j.logger.com.framsticks.portals=DEBUG
60#log4j.logger.com.framsticks.gui=DEBUG
61#log4j.logger.com.framsticks.dumping.LoadStream=TRACE
Note: See TracBrowser for help on using the repository browser.