Adds a logger.
import Batch = require("nativescript-batch");
var b = Batch.newBatch(function(ctx) {
ctx.log("Test");
});
b.addLogger(function(logCtx) {
console.log(logCtx.message);
});
b.start();
Adds a logger.
import Batch = require("nativescript-batch");
var b = Batch.newBatch(function(ctx) {
ctx.log("Test");
});
b.addLogger(function(logCtx) {
console.log(logCtx.message);
});
b.start();