UNPKG

234 BJavaScriptView Raw
1'use strict';
2var options = require('./options');
3
4exports.log = function(type, url, source, target) {
5 if (options.get('verbose')) {
6 console.log(type + ' ' + (source + url).red + ' ---> ' + (target + url).green);
7 }
8};