From 45812d32e31e267323e2ada62bf63ccab5a0c3e8 Mon Sep 17 00:00:00 2001 From: "kirill.moos" Date: Wed, 13 May 2026 20:13:11 +0300 Subject: [PATCH] add rules to gitignore --- .gitignore | 6 ++++++ lib/log.js | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 78dcc91..c267d79 100644 --- a/.gitignore +++ b/.gitignore @@ -31,3 +31,9 @@ context/config.js # generated data json file data.json + +# generated import.jsonl +import.jsonl + +# generated data +data \ No newline at end of file diff --git a/lib/log.js b/lib/log.js index c3db60c..a5f0184 100644 --- a/lib/log.js +++ b/lib/log.js @@ -1,7 +1,7 @@ const bunyan = require('bunyan') module.exports = bunyan.createLogger({ - name: 'mm-etl', + name: 'loop-etl-rocketchat', streams: [ { level: 'info', @@ -9,7 +9,7 @@ module.exports = bunyan.createLogger({ }, { level: 'info', - path: 'mm-etl.log' + path: 'loop-etl-rocketchat.log' } ] })