link-rdflib
Version:
an RDF library for node.js, patched for speed.
26 lines (25 loc) • 345 B
JavaScript
/**
* A Dummy log
* @module log
*/
module.exports = {
debug: function debug(x) {
return;
},
warn: function warn(x) {
return;
},
info: function info(x) {
return;
},
error: function error(x) {
return;
},
success: function success(x) {
return;
},
msg: function msg(x) {
return;
}
};
;