8 lines
128 B
MySQL
8 lines
128 B
MySQL
|
-- Retrieves recent entries from the macOS unified log
|
||
|
--
|
||
|
-- tags: postmortem
|
||
|
-- platform: darwin
|
||
|
SELECT
|
||
|
*
|
||
|
FROM
|
||
|
unified_log;
|