# The system will look for this config file to be specified as a system property: # -D java.util.logging.config.file=logging.properties #About SimpleFormatter: #It is possible to format the output by java.util.logging.SimpleFormatter.format #Each item syntax of the format string is: %[argument_index$][flags][width][.precision]conversion #The optional argument_index is a decimal integer indicating the position of the argument in the argument list. #The first argument is referenced by "1$", the second by "2$", etc. #The order of arguments is 0=format, 1=date, 2=source, 3=logger, 4=level, 5=message, 6=thrown #The optional flags is a set of characters that modify the output format. The set of valid flags depends on the conversion. #The required conversion is a character indicating how the argument should be formatted. #The set of valid conversions for a given argument depends on the argument's data type. #Example: java.util.logging.SimpleFormatter.format="%4$s: %5$s [%1$tc]%n" #DEFAULT_FORMAT = "%1$tb %1$td, %1$tY %1$tl:%1$tM:%1$tS %1$Tp %2$s%n%4$s: %5$s%6$s%n"; #Pose standard #java.util.logging.SimpleFormatter.format=[%1$tT] %4$s %2$s:%n%5$s%6$s%n java.util.logging.SimpleFormatter.format = [%1$tT]%2$s:%n%4$: %5$s%6$s%n #Minimal log #java.util.logging.SimpleFormatter.format=%2$s.%4$s: %5$s%6$s%n #java.util.logging.SimpleFormatter.format=%4$s: %5$s%6$s%n # Level can assume values: ALL, SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value) # Specify the handlers to create in the root logger # (all loggers are children of the root logger) # The following creates two handlers handlers = java.util.logging.ConsoleHandler #,java.util.logging.FileHandler #java.util.logging.ConsoleHandler #java.util.logging.FileHandler #CONSOLE # Set the default logging level for new ConsoleHandler instances java.util.logging.ConsoleHandler.level = ALL # Set the default formatter for new ConsoleHandler instances java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter #FILE # Set the default logging level for new FileHandler instances #java.util.logging.FileHandler.level = ALL #java.util.logging.FileHandler.formatter = java.util.logging.SimpleFormatter #java.util.logging.FileHandler.limit = 10000000 #java.util.logging.FileHandler.count = 20 #java.util.logging.FileHandler.pattern = /tmp/cstn.log # Set the default logging level for the root logger # Set the default logging level for the logger .level = INFO #it.univr.di.cstnu.algorithms.AbstractCSTN.level = FINER #it.univr.di.cstnu.algorithms.CSTN.level = FINER #it.univr.di.cstnu.algorithms.CSTN2CSTN0.level = FINER #it.univr.di.cstnu.algorithms.CSTNEpsilon.level = FINER #it.univr.di.cstnu.algorithms.CSTNIR3R.level = FINER #it.univr.di.cstnu.algorithms.CSTNIRwoNodeLabels.level = FINER it.univr.di.cstnu.algorithms.CSTNPSU.level = FINEST it.univr.di.cstnu.algorithms.CSTNPotential.level = FINER it.univr.di.cstnu.algorithms.CSTNU.level = FINER it.univr.di.cstnu.algorithms.OSTNU.level = FINER #it.univr.di.cstnu.algorithms.CSTNU2CSTN.level = FINER #it.univr.di.cstnu.algorithms.CSTNUwoNodeLabel.level = FINER #it.univr.di.cstnu.algorithms.PCSTNU.level=FINER it.univr.di.cstnu.algorithms.STN.level = INFO it.univr.di.cstnu.algorithms.STNU.level = INFO it.univr.di.cstnu.algorithms.STNURTE.level = WARNING it.univr.di.cstnu.algorithms.PSTN.level = FINEST #it.univr.di.cstnu.graph.TNGraph.level=FINE it.univr.di.cstnu.util.CSTNRandomGenerator.level = FINER it.univr.di.cstnu.util.CSTNU2CSTNPSU.level = FINER #it.univr.di.cstnu.util.Checker.level = INFO it.univr.di.cstnu.util.DispatchabilityBenchmarkRunner.level = INFO it.univr.di.cstnu.util.MatLabEngine.level = FINE it.univr.di.cstnu.util.OSTNURandomGenerator.level = FINER #it.univr.di.cstnu.util.STNUDensifier.level = FINER it.univr.di.cstnu.util.STNURandomGenerator.level = FINER it.univr.di.cstnu.util.STNURTEBenchmarkRunner.level = FINE it.univr.di.cstnu.util.PSTNRTEBenchmarkRunner.level = FINE it.univr.di.cstnu.visualization.CSTNLayout.level = FINEST it.univr.di.cstnu.visualization.TNEditor.level = INFO #it.univr.di.labeledvalue.AbstractLabeledIntMap.level = WARNING