loghound 0.0.6 copy "loghound: ^0.0.6" to clipboard
loghound: ^0.0.6 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 with LogHoundClient.
  • flutter_bootstrap.dart: shows the minimal LogHound.run setup 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');
    },
  );
}
0
likes
0
points
60
downloads

Publisher

unverified uploader

Weekly Downloads

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.

Repository (GitHub)
View/report issues

Topics

#logging #cli #developer-tools #ai

License

unknown (license)

Dependencies

args, dio, vm_service

More

Packages that depend on loghound