fix build logs db name

This commit is contained in:
oleg 2015-10-04 15:56:04 +03:00
parent 058ed2de61
commit ee9d6f3fde

2
db.js
View File

@ -78,7 +78,7 @@ exports.init = function(dbPath, params, callback) {
); );
}; };
var buildLogsDbPath = path.join(dbPath, 'main'), var buildLogsDbPath = path.join(dbPath, 'buildLogs'),
buildLogsDb = nlevel.db(buildLogsDbPath, params, callback); buildLogsDb = nlevel.db(buildLogsDbPath, params, callback);
exports.logLines = new nlevel.DocsSection(buildLogsDb, 'logLines', { exports.logLines = new nlevel.DocsSection(buildLogsDb, 'logLines', {