loghound 0.0.8
loghound: ^0.0.8 copied to clipboard
AI-friendly local log investigation harness for Dart and Flutter: collect structured app logs, store them as JSON Lines, and query the exact slice you need.
example/README.md
loghound examples #
Run a Flutter app and collect hidden events:
dart run loghound:loghound run
For split terminals, keep the collector running and start Flutter normally:
dart run loghound:loghound stay
flutter run
Examples:
client.dart: emits one hidden VM Service event withLogHoundClient.flutter_bootstrap.dart: shows the minimalLogHound.runsetup used by Flutter apps.
Minimal app setup:
import 'package:loghound/loghound.dart';
void main() {
LogHound.run(
appId: 'guide-app',
flavor: 'staging',
app: () {
LogHound.action('app.started');
},
);
}