From 98546b701a8124b248a6a6bb10560e957d738f60 Mon Sep 17 00:00:00 2001 From: Jesse Li-Yates Date: Tue, 30 Jun 2026 12:47:36 +1000 Subject: [PATCH] Update logcatpatterns.ts --- proprietary/backups/logcatpatterns.ts | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/proprietary/backups/logcatpatterns.ts b/proprietary/backups/logcatpatterns.ts index b0ab8f3..b868e64 100644 --- a/proprietary/backups/logcatpatterns.ts +++ b/proprietary/backups/logcatpatterns.ts @@ -1,21 +1,4 @@ -// ⚑ BACKUP / REFERENCE COPY — NOT compiled, NOT imported, NOT for GitHub. -// This is the original TypeScript of the Logcat visual-map relationship-mining -// engine, kept here after it was ported to Go (backend_logcatpatterns.go) on -// 2026-06-04. The Go file is the LIVE version now; this is preserved so we can -// read/refactor the logic in future. If you change the Go version, mirror it here. -// -// --------------------------------------------------------------------------- -// -// Parsed-reference extraction for the Logcat visual map. -// -// A log line is just text, but Android's framework + system-event logs encode -// real relationships: who started whom, who crashed, who got killed, who sent a -// signal to which pid. We mine those so the map can draw *meaningful* edges -// ("ActivityManager → com.foo: spawn") on top of the ambient co-occurrence web. -// -// Covers both the framework text logs (main/system buffers) and the binary -// event-log tags (events buffer: am_proc_start, am_anr, am_crash, am_kill…) so -// "show system events" works when the user selects the events/all buffer. + import type { LogcatLine } from './types'