Skip to content

Commit

Permalink
logger: remove unused methods
Browse files Browse the repository at this point in the history
  • Loading branch information
shakyShane committed Apr 8, 2016
1 parent 0a63c8f commit ce6a293
Showing 1 changed file with 1 addition and 15 deletions.
16 changes: 1 addition & 15 deletions lib/logger.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,20 +68,6 @@ module.exports.callbacks = {
logger.info("{cyan:Reloading Browsers...");
}
},
/**
* @param {BrowserSync} bs
* @param data
*/
"config:warn": function (bs, data) {
logger.setOnce("useLevelPrefixes", true).warn(data.msg);
},
/**
* @param {BrowserSync} bs
* @param data
*/
"config:error": function (bs, data) {
logger.setOnce("useLevelPrefixes", true).error.apply(logger, data.msg);
},
/**
* @param {BrowserSync} bs
* @param data
Expand Down Expand Up @@ -157,7 +143,7 @@ module.exports.callbacks = {
logger.unprefixed("info",
messages.scriptTags(bs.options)
);

logUrls(bs.options.get("urls").filter(function (value, key) {
return key.slice(0, 2) === "ui";
}).toJS());
Expand Down

0 comments on commit ce6a293

Please sign in to comment.