--The log of IPMsg for Mac is standard, just look at it with an editor. ――So I made a script to format it into sqlite3.db format. --You can see it with various sqlite viewers.
--Created in the following environment.
--Download or git clone to download the project --Double-click convert_ipmsg_log.command --Format the ipmsg text log file into sqlite3.db format. --Open the formatted sqlite3.db file. (The default app will start.)
--It is recommended to create an alias for convert_ipmsg_log.command.
--Since it is in sqlite3.db format, you can usually see it in Browse Data of DB Browser, and you can also filter and sort without SQL.
――Furthermore, if you use SQL, you can extract the message one day ago.
SELECT
*
FROM
ipmsg_log
WHERE
datetime > datetime( current_timestamp , "-1 days")
ORDER BY
datetime desc
Recommended Posts