123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- {
- "appenders": [
- {
- "type": "file",
- "filename": "./test/logs/node-log-${opts:serverId}.log",
- "fileSize": 1048576,
- "layout": {
- "type": "basic"
- },
- "backups": 5
- },
- {
- "type": "console"
- },
- {
- "type": "file",
- "filename": "./test/logs/con-log-${opts:serverId}.log",
- "pattern": "connector",
- "maxLogSize": 1048576,
- "layout": {
- "type": "basic"
- },
- "backups": 5,
- "category":"con-log"
- },
- {
- "type": "file",
- "filename": "./test/logs/rpc-log-${opts:serverId}.log",
- "fileSize": 1048576,
- "layout": {
- "type": "basic"
- },
- "backups": 5,
- "category":"rpc-log"
- },
- {
- "type": "file",
- "filename": "./test/logs/forward-log-${opts:serverId}.log",
- "fileSize": 1048576,
- "layout": {
- "type": "basic"
- },
- "backups": 5,
- "category":"forward-log"
- },
- {
- "type": "file",
- "filename": "./test/logs/crash.log",
- "fileSize": 1048576,
- "layout": {
- "type": "basic"
- },
- "backups": 5,
- "category":"crash-log"
- },
- {
- "type": "file",
- "filename": "./test/logs/transaction.log",
- "fileSize": 1048576,
- "layout": {
- "type": "basic"
- },
- "backups": 5,
- "category":"transaction-log"
- },
- {
- "type": "file",
- "filename": "./test/logs/transaction-error.log",
- "fileSize": 1048576,
- "layout": {
- "type": "basic"
- },
- "backups": 5,
- "category":"transaction-error-log"
- }
- ],
- "levels": {
- "rpc-log" : "ERROR",
- "forward-log": "ERROR"
- },
- "replaceConsole": true
- }
|