############################################################ # Global properties ############################################################ # "handlers" specifies a comma separated list of log Handler # classes. These handlers will be installed during VM startup. # Note that these classes must be on the system classpath. handlers= java.util.logging.ConsoleHandler # handlers= java.util.logging.FileHandler, java.util.logging.ConsoleHandler # Default global logging level. # This specifies which kinds of events are logged across # all loggers. For any given facility this global level # can be overriden by a facility specific level # Note that the ConsoleHandler also has a separate level # setting to limit messages printed to the console. .level= INFO ############################################################ # Handler specific properties. # Describes specific configuration info for Handlers. ############################################################ # default file output is in user's home directory. java.util.logging.FileHandler.pattern = %h/java%u.log java.util.logging.FileHandler.limit = 50000 java.util.logging.FileHandler.count = 1 java.util.logging.FileHandler.formatter = java.util.logging.XMLFormatter java.util.logging.ConsoleHandler.level = INFO java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter ############################################################ # Facility specific properties. # Provides extra control for each logger. ############################################################ ############################################################ # Loggers for Lightstreamer Java Client Library. # General rules: # - Exceptions thrown to the caller are not logged. # - Exceptions asynchronously notified to the client are logged at SEVERE level. # - INFO level is not used for tracing purposes; # all tracing is done at FINE, FINER and FINEST levels. # - Full exception stack traces are logged at FINER level. # - Pushing activity from Lightstreamer Server is logged at FINEST level. # # In case of library access through LS_Client, # only the com.lightstreamer.ls_client.* loggers are active. # In case of library access through LS_Proxy, # LS_Client clients are in ls_proxy package and all loggers are active. ############################################################ # Logs socket activity on Lightstreamer Server connections. # At FINER level, socket operations are logged. # At FINEST level, read/write data exchange is logged. com.lightstreamer.ls_client.stream.level = INFO # Logs requests to Lightstreamer Server and Server answers. # At FINE level, requests are logged. # At FINER level, request details are logged. # At FINEST level, events from the Server are logged. com.lightstreamer.ls_client.protocol.level = INFO # Logs Server Session lifecycle events. # At FINE level, lifecycle events are logged. # At FINER level, lifecycle error details are logged. com.lightstreamer.ls_client.session.level = INFO # Logs subscription requests received by the clients and the related updates. # At WARNING level, alert events from the Server are logged. # At FINE level, subscriptions and unsubscriptions are logged. # At FINER level, requests batching is logged. # At FINEST level, update details are logged. com.lightstreamer.ls_client.actions.level = INFO # Logs connection establishment attempts and recovery actions. # At WARNING level, failures in internal reconnection attempts are logged. # At INFO level, internal disconnection recovery actions are logged. # At FINE level, connection attempts are logged. # At FINER level, connection attempts details are logged. com.lightstreamer.ls_proxy.connection.level = INFO # Logs items subscription activity. # At FINE level, addition, changes and deletion of item subscriptions are logged. # At FINER level, internal batching of subscription requests is logged. # At FINEST level, push and alert events received are logged. com.lightstreamer.ls_proxy.subscriptions.level = INFO # Logs items subscription requests by the clients. # At FINE level, addition and removal of fields to be monitored is logged. # At FINER level, transaction management details are logged. # At FINEST level, attempts to adjust item subscription state and their outcomes are logged. com.lightstreamer.ls_proxy.state.level = INFO # Logs update events flow issues. # At WARNING level, holes in events flow (as notified to the client) are logged. # At FINE level, holes genesis details are logged. # At FINER level, holes recovery details for filtered COMMAND items are logged. # At FINEST level, update events notifications to the client are logged. com.lightstreamer.ls_proxy.events.level = INFO