An open API service indexing awesome lists of open source software.

https://github.com/stablekernel/scribe

Dart Logging Backends
https://github.com/stablekernel/scribe

Last synced: 3 months ago
JSON representation

Dart Logging Backends

Awesome Lists containing this project

README

          

# scribe

A package for writing logs to the console or to a rotating file.

## Usage

```
var server = new LoggingServer([new RotatingLoggingBackend("api.log"")]);
server.getNewTarget().bind(logger);
await server.start();
```