A extension of console.log() that adds debugging metadata for better readability and debugging..
npm install logified- 📜 Formatted Logging with timestamps and file info
- 📏 Type Detection for each logged value
- ⏳ Execution Timers to measure function performance
- 📝 Save Logs to a file
const LOG = require("logified");
LOG("Hello, World!");
LOG({ user: "Tahsin", role: "newbie developer" });
LOG.startTimer("My Task");
// Some process...
LOG.endTimer("My Task");
LOG.saveToFile("logfile.txt", "This is a log entry.");
This project is licensed under the MIT License.
