Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/neogeek/lumberlogs
📝 A simple log aggregation tool.
https://github.com/neogeek/lumberlogs
logger logging unity
Last synced: 4 months ago
JSON representation
📝 A simple log aggregation tool.
- Host: GitHub
- URL: https://github.com/neogeek/lumberlogs
- Owner: neogeek
- Created: 2018-07-24T21:33:51.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-10-05T17:48:00.000Z (over 1 year ago)
- Last Synced: 2024-10-11T10:45:54.400Z (4 months ago)
- Topics: logger, logging, unity
- Language: JavaScript
- Homepage:
- Size: 3.1 MB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LumberLogs
> 📝 A simple log aggregation tool.
[![](https://img.shields.io/badge/Trello-Board-blue.svg)](https://trello.com/b/BIqhJuLP/lumberlogs)
## Install
Download the latest from
## Usage
### Bash
```bash
$ curl -H "content-type:text/plain" -d "Hello, world." http://localhost:1234/log
``````bash
$ curl -H "content-type:application/json" -d "{\"message\":\"Hello, world.\"}" http://localhost:1234/log
```### JavaScript
```javascript
fetch('http://localhost:1234/log', {
method: 'POST',
body: 'Hello, world.'
});
``````javascript
fetch('http://localhost:1234/log', {
method: 'POST',
body: JSON.stringify({ message: 'Hello, world.' }),
headers: {
'Content-Type': 'application/json'
}
});
```### Unity
Install package via UPM
## Build
Install required packages via node.
```bash
$ npm install
```Test the application.
```bash
$ npm start
```Build the application.
```bash
$ npm run build
```