mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-22 01:11:42 +00:00
Also added scripts for EOF newline management and for removing trailing whitespace. configure.bat was rewritten to use CRLF line endings. Documentation for the existing scripts was also improved.
26 lines
1.2 KiB
Properties
26 lines
1.2 KiB
Properties
# "handlers" specifies a comma separated list of log Handler
|
|
# classes. These handlers will be installed during VM startup.
|
|
# By default we only configure a ConsoleHandler, which will only
|
|
# show messages at the INFO and above levels.
|
|
handlers=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
|
|
.level=INFO
|
|
############################################################
|
|
# Handler specific properties.
|
|
# Describes specific configuration info for Handlers.
|
|
############################################################
|
|
java.util.logging.ConsoleHandler.level=FINER
|
|
java.util.logging.ConsoleHandler.formatter=java.util.logging.SimpleFormatter
|
|
############################################################
|
|
# Facility specific properties.
|
|
# Provides extra control for each logger.
|
|
############################################################
|
|
edu.wpi.first.wpilibj.level=INFO
|
|
edu.wpi.first.wpilibj.command.level=INFO
|