https://github.com/kawaiipantsu/logio-devlog
Files to use in your different projects, scripts, code to integrate with LogIO. LogIO is a simple real-time (live) log monitor, that is very useful for those large amount of spam/debug logs that you dont want to keep. Or just a place to see rolling real time info etc.
https://github.com/kawaiipantsu/logio-devlog
developer-tools development livedata logging logio real-time streaming
Last synced: 5 months ago
JSON representation
Files to use in your different projects, scripts, code to integrate with LogIO. LogIO is a simple real-time (live) log monitor, that is very useful for those large amount of spam/debug logs that you dont want to keep. Or just a place to see rolling real time info etc.
- Host: GitHub
- URL: https://github.com/kawaiipantsu/logio-devlog
- Owner: kawaiipantsu
- License: mit
- Created: 2023-11-19T20:40:20.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-19T21:16:54.000Z (over 2 years ago)
- Last Synced: 2024-05-01T22:35:42.521Z (about 2 years ago)
- Topics: developer-tools, development, livedata, logging, logio, real-time, streaming
- Language: PHP
- Homepage: https://logio.org
- Size: 320 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ᵔᴥᵔ LogIO-Devlog
[](https://twitter.com/davidbl) [](https://github.com/kawaiipantsu/logio-devlog/issues) [](https://github.com/kawaiipantsu/logio-devlog/issues) [](https://github.com/kawaiipantsu/logio-devlog/blob/master/LICENSE) [](https://github.com/kawaiipantsu/logio-devlog/network) [](https://github.com/kawaiipantsu/logio-devlog/stargazers)
> A quick way to give yourself a "developer" real-time log from within your scripts, code or projects

---
## Join the community
Join the community of Kawaiipantsu / THUGS(red) and participate in the dev talk around logio-devlog or simply just come visit us and chat about anything security related :) We love playing around with security. Also we have ctf events and small howto events for new players.
**THUGS(red) Discord**:
## First install & run LogIO server
This requires NodeJS / NPM. But the installation is very straight forward and easy.
```shell
apt update
apt install npm
npm install -g log.io
nano ~/.log.io/server.json
```
```ini
{
"messageServer": { "port": 6689, "host": "127.0.0.1" },
"httpServer": { "port": 6688, "host": "127.0.0.1" },
"debug": false,
"basicAuth": { "realm": "Devlog",
"users": { "devlog": "devlog" }
}
}
```
```shell
log.io-server
# Browse to http://localhost:6688
# Look in contrib for a systemd service file example
```
## How to use THUGSred logio-devlog
### PHP
```php
// Load it up!
require("devlog.inc.php");
$devlog = new Devlog(); // Localhost default
//$devlog = new Devlog(""); // Remember to also set the ip in the logio config
// Send a message :)
$devlog->sendMessage("My first message!!","Group1","Internal-function1");
$devlog->sendMessage("My second message!!","Group1","Internal-function2");
$devlog->sendMessage("My third message!!","Group2","Source1");
```