https://github.com/stablekernel/scribe
Dart Logging Backends
https://github.com/stablekernel/scribe
Last synced: 3 months ago
JSON representation
Dart Logging Backends
- Host: GitHub
- URL: https://github.com/stablekernel/scribe
- Owner: stablekernel
- License: bsd-2-clause
- Created: 2016-01-06T20:59:27.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2018-10-15T14:33:30.000Z (over 7 years ago)
- Last Synced: 2025-10-23T06:55:24.905Z (3 months ago)
- Language: Dart
- Size: 32.2 KB
- Stars: 5
- Watchers: 5
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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();
```