https://github.com/g4code/errorlogger
https://github.com/g4code/errorlogger
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/g4code/errorlogger
- Owner: g4code
- License: mit
- Created: 2014-12-08T15:23:27.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2016-09-15T05:44:11.000Z (almost 10 years ago)
- Last Synced: 2025-10-02T23:20:01.913Z (9 months ago)
- Language: JavaScript
- Size: 10.7 KB
- Stars: 0
- Watchers: 8
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
errorlogger
======
> errorlogger - [nodejs](http://nodejs.org) library
## Install
$ npm install -g errorlogger
## Usage
```bash
Usage: errorlogger [options]
Options:
-h, --help output usage information
-V, --version output the version number
-c, --config config file path
```
eg
```bash
$ errorlogger --help
$ errorlogger --version
$ errorlogger --config /path_to_config.json
```
## Config
Config file options:
```js
{
"directory": "/path_to_error_logs",
"unlink" : false,
"solr" : {
"host" : "solr_host",
"port" : "solr_port",
"collection" : "solr_collection"
}
}
```
## Development
### Install dependencies
$ make install
### Run tests
$ make test
## License
(The MIT License)
see LICENSE file for details...