https://github.com/fabianishere/logging.js
Lightweight logging library for Node.js based on the java.util.logging library.
https://github.com/fabianishere/logging.js
java-logging javascript logging nodejs
Last synced: 2 days ago
JSON representation
Lightweight logging library for Node.js based on the java.util.logging library.
- Host: GitHub
- URL: https://github.com/fabianishere/logging.js
- Owner: fabianishere
- License: mit
- Created: 2011-11-30T16:44:56.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2016-08-19T10:58:26.000Z (over 9 years ago)
- Last Synced: 2025-09-29T17:53:06.477Z (7 months ago)
- Topics: java-logging, javascript, logging, nodejs
- Language: JavaScript
- Homepage:
- Size: 44.9 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# logging.js
Logging.js is a lightweight logging library written in Javascript based on the
`java.util.logging` package.
```js
var logger = require("logging-js").get(module);
logger.info("Hello World!");
```
## Installation
Logging.js can be installed by simply running the following command in your
terminal:
```sh
$ npm install --save logging-js
```
## License
This project is licensed under the MIT license. More information can be found
in the `LICENSE` file.