summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/book.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/book.js b/lib/book.js
index 5099291..d907740 100644
--- a/lib/book.js
+++ b/lib/book.js
@@ -712,10 +712,10 @@ Book.init = function(root) {
}, []);
};
- book.log.infoLn("init book at", root);
+ book.log.info.ln("init book at", root);
return fs.mkdirp(root)
.then(function() {
- book.log.infoLn("detect structure from SUMMARY (if it exists)");
+ book.log.info.ln("detect structure from SUMMARY (if it exists)");
return book.parseSummary();
})
.fail(function() {
@@ -748,7 +748,7 @@ Book.init = function(root) {
return fs.exists(absolutePath)
.then(function(exists) {
- book.log.infoLn("create", chapter.path);
+ book.log.info.ln("create", chapter.path);
if(exists) return;
return fs.mkdirp(path.dirname(absolutePath))
@@ -759,7 +759,7 @@ Book.init = function(root) {
}));
})
.then(function() {
- book.log.infoLn("initialization is finished");
+ book.log.info.ln("initialization is finished");
});
};