mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-05-10 00:45:01 -04:00
Fixed log4js configuration error in bin/extractPadData.js
This commit is contained in:
parent
caf125a798
commit
56355dbbc0
1 changed files with 2 additions and 1 deletions
|
@ -11,7 +11,8 @@ if(process.argv.length != 3)
|
||||||
var padId = process.argv[2];
|
var padId = process.argv[2];
|
||||||
|
|
||||||
//initalize the database
|
//initalize the database
|
||||||
var log4js = require("log4js").configure('etherpad_logging.json');
|
var log4js = require("log4js");
|
||||||
|
log4js.configure('etherpad_logging.json');
|
||||||
log4js.setGlobalLogLevel("INFO");
|
log4js.setGlobalLogLevel("INFO");
|
||||||
var async = require("async");
|
var async = require("async");
|
||||||
var db = require('../node/db/DB');
|
var db = require('../node/db/DB');
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue