0.0.2 • Published 5 years ago
shark-logger-remote v0.0.2
shark-logger
Example:
const sharkevent = require("shark-logger-remote");
const logger = new sharkevent("myapplication.log", ["ERR", "WARN", "INFO"], { port: 8080, host: "localhost" });
logger.emit("info", "Helloworld");
logger.emit("warn", "Be careful!");
logger.emit("error", "OOOPS!");This will log three things into the file myapplication.log and send it to localhost at port 8080 via udp