fix: improved log file data

This commit is contained in:
Randell Dawson
2018-11-12 01:36:54 -08:00
committed by mrugesh mohapatra
parent 2ae521c995
commit ce156ee61d
2 changed files with 8 additions and 8 deletions

View File

@@ -3,12 +3,12 @@ const { saveToFile } = require('./fileFunctions');
class PrProcessingLog {
constructor() {
this._start = null,
this._lastUpdate = null,
this._lastPRlogged = null,
this._finish = null,
this._prs = {}
this._logfile = 'data/open-prs-processed.json'
this._start = null;
this._lastUpdate = null;
this._lastPRlogged = null;
this._finish = null;
this._prs = {};
this._logfile = 'data/open-prs-processed.json';
}
import() {