1 | # I2P Log Configuration File |
---|
2 | # Format: |
---|
3 | # d = date |
---|
4 | # c = class or log name |
---|
5 | # t = thread name |
---|
6 | # p = priority level of the log record |
---|
7 | # m = message |
---|
8 | logger.format=d p [t] c: m |
---|
9 | |
---|
10 | # Date format: |
---|
11 | # uses the java.text.SimpleDateFormat |
---|
12 | logger.dateFormat=HH:mm:ss.SSS |
---|
13 | |
---|
14 | # Log file name: |
---|
15 | # This is the log file name before being rotated |
---|
16 | # '#' is replaced with the current log number for that day |
---|
17 | # If # is not specified, logs are not rotated |
---|
18 | logger.logFileName=log-#.txt |
---|
19 | |
---|
20 | # Log file size: |
---|
21 | # Maximum size of each log file: |
---|
22 | # 32g <-- 32 gigabytes (32*1024*1024*1024 bytes) |
---|
23 | # 10m <-- 10 megabytes (10*1024*1024 bytes) |
---|
24 | # 66k <-- 66 kilobytes (66*1024 bytes) |
---|
25 | # 42 <-- 42 bytes |
---|
26 | logger.logFileSize=3m |
---|
27 | |
---|
28 | # Log rotation limit: |
---|
29 | # Maximum number of logs to keep per day - lower log numbers |
---|
30 | # are reused once the limit is reached. Ignored if there is no |
---|
31 | # '#' in the logFileName. |
---|
32 | logger.logRotationLimit=3 |
---|
33 | |
---|
34 | # Display on screen: |
---|
35 | # In addition to the logging, send filtered log messages to the |
---|
36 | # standard output |
---|
37 | # true or false |
---|
38 | logger.displayOnScreen=true |
---|
39 | |
---|
40 | # Default level: |
---|
41 | # Define the minimum log level to be displayed unless |
---|
42 | # specified otherwise. |
---|
43 | # |
---|
44 | # Log levels, from least severe to most, are: |
---|
45 | # DEBUG : verbose debugging info |
---|
46 | # INFO : component status messages |
---|
47 | # WARN : bad situation but recoverable |
---|
48 | # ERROR : component error |
---|
49 | # CRIT : your hard drive is on fire |
---|
50 | # |
---|
51 | # Less severe levels always include more severe ones (e.g. |
---|
52 | # if you're listening to debug messages, you'll get info messages |
---|
53 | # too) |
---|
54 | logger.defaultLevel=##_logger_level## |
---|
55 | |
---|
56 | # Minimum log level for a record to be displayed on the screen |
---|
57 | # This check occurs after other filters occur, and only affects what is |
---|
58 | # show on console, and only does anything if displayOnScreen=true |
---|
59 | logger.minimumOnScreenLevel=DEBUG |
---|
60 | |
---|
61 | # Records: |
---|
62 | # Override the defaultLevel for all classes under the given package |
---|
63 | # or class |
---|
64 | logger.record.net.i2p=##_logger_level2## |
---|
65 | ##_logger_notverbose## |
---|
66 | |
---|