Excellent post here on how to use log4j in JDeveloper.
Check Log4j Conversion Patterns and Overhead to see how you can tune the logging info of log4j to satisfy your needs and also the performance overhead they produce.
org.apache.myfaces.trinidad.CLIENT_STATE_METHOD
: Specifies the type of client-side state saving to use when client-side state saving is enabled by using javax.faces.STATE_SAVING_METHOD
. The values for CLIENT_STATE_METHOD
are:token
: (Default) Stores the page state in the session, but persists a token to the client. The simple token, which identifies a block of state stored back on the HttpSession
object, is stored on the client. This enables ADF Faces to disambiguate the same page appearing multiple times. Failover is supported.all
: Stores all state information on the client in a (potentially large) hidden form field. It is useful for developers who do not want to use HttpSession
.org.apache.myfaces.trinidad.CLIENT_STATE_MAX_TOKENS
: Specifies how many tokens should be stored at any one time per user, when token-based client-side state saving is enabled. The default is 15. When the number of tokens is exceeded, the state is lost for the least recently viewed pages, which affects users who actively use the Back button or who have multiple windows opened at the same time. If you are building HTML applications that rely heavily on frames, you would want to increase this value.