From 3c1527544df835a831898edbd74a473f027bb855 Mon Sep 17 00:00:00 2001 From: "Lucas, John (jl1315)" Date: Wed, 23 Aug 2017 18:58:33 +0000 Subject: deployment handler initial seed code Change-Id: I0bfc86d17edead0114ea0012fb469014e978cd15 Issue-Id: DCAEGEN2-43 Signed-off-by: J. F. Lucas --- etc/log4js.json | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 etc/log4js.json (limited to 'etc/log4js.json') diff --git a/etc/log4js.json b/etc/log4js.json new file mode 100644 index 0000000..5916344 --- /dev/null +++ b/etc/log4js.json @@ -0,0 +1,52 @@ +{ + "appenders": + [ + { + "type": "file", + "filename": "log/audit.log", + "maxLogSize": 10240000, + "backups": 10, + "category": ["audit"], + "layout": + { + "type": "messagePassThrough" + } + }, + + { + "type": "file", + "filename": "log/metrics.log", + "maxLogSize": 10240000, + "backups": 10, + "category": ["metrics"], + "layout": + { + "type": "messagePassThrough" + } + }, + + { + "type": "file", + "filename": "log/error.log", + "maxLogSize": 10240000, + "backups": 10, + "category": ["error"], + "layout": + { + "type": "messagePassThrough" + } + }, + + { + "type": "file", + "filename": "log/debug.log", + "maxLogSize": 10240000, + "backups": 10, + "category": ["debug"], + "layout": + { + "type": "messagePassThrough" + } + } + ] +} -- cgit 1.2.3-korg