mirror of
https://github.com/bitwarden/clients.git
synced 2026-06-04 21:04:29 +08:00
636 B
636 B
logging-angular
Owned by: platform
Angular wrapper for @bitwarden/logging. Provides FlightRecorderService, an
@Injectable subclass of FlightRecorder that wires SDK readiness automatically via
SdkLoadService.Ready.
Usage
import { FlightRecorderService } from "@bitwarden/logging-angular";
@Component({
/* ... */
})
export class MyComponent {
private recorder = inject(FlightRecorderService);
async viewEvents() {
const events = await this.recorder.read();
}
}
See @bitwarden/logging for the full API surface inherited by this service.