forked from shadders/BitcoinWallet
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsample.logging.properties
More file actions
29 lines (23 loc) · 1.23 KB
/
sample.logging.properties
File metadata and controls
29 lines (23 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
################################################################
# BitcoinWallet Logging Configuration File #
# #
# Rename this file to logging.properties and place it in #
# the BitcoinWallet application directory. Change the log #
# file name as desired (java.util.logging.FileHandler.pattern) #
################################################################
# Log to console and file
handlers = java.util.logging.FileHandler, java.util.logging.ConsoleHandler
# Default logging level (FINE, INFO, WARNING, SEVERE)
.level = SEVERE
# BitcoinWallet logging level (FINE, INFO, WARNING, SEVERE)
org.ScripterRon.BitcoinWallet.level = FINE
# BitcoinCore logging level (FINE, INFO, WARNING, SEVERE)
org.ScripterRon.BitcoinCore.level = INFO
# Create log file in temporary directory, accept FINE or higher messages,
# maximum file size is 500KB with a single file
java.util.logging.FileHandler.pattern = %t/BitcoinWallet.log
java.util.logging.FileHandler.limit = 500000
java.util.logging.FileHandler.count = 1
java.util.logging.FileHandler.level = FINE
# Limit the message that are printed on the console to FINE and above
java.util.logging.ConsoleHandler.level = FINE