c9-core/plugins/c9.vfs.client/log-service.js

10 wiersze
255 B
JavaScript

module.exports = function(vfs, options, register) {
register(null, {
log: function (message, callback) {
callback = callback || function(){};
console.log(message);
callback();
}
})
}