2022-12-13 23:13:49 -05:00
|
|
|
# LogLib
|
|
|
|
|
2022-12-22 18:02:41 -05:00
|
|
|
A logging library for PHP/ncc, this was quickly thrown together
|
|
|
|
to provide a simple logging interface and to test out
|
|
|
|
NCC's capabilities for PHP.
|
|
|
|
|
|
|
|
## Getting started
|
|
|
|
|
|
|
|
First
|
|
|
|
|
|
|
|
|
|
|
|
### building
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ git clone https://git.n64.cc/nosial/libs/loglib.git
|
|
|
|
$ cd loglib
|
|
|
|
|
|
|
|
$ ncc build --config release
|
|
|
|
# or
|
|
|
|
$ make release
|
|
|
|
```
|
|
|
|
|
|
|
|
### installing
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ sudo ncc install -p="build/release/net.nosial.loglib.ncc"
|
|
|
|
# or
|
|
|
|
$ sudo make install
|
|
|
|
```
|