找不到:com.apple.ReportCrash.Self

找不到:com.apple.ReportCrash.Self

我的 Mac 电脑时不时会崩溃,我试图查看控制台日志中出现的每个问题

不断出现的事情之一是:

com.apple.launchd.peruser.501[105]  (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self

事实证明我没有这个文件com.apple.ReportCrash.Self在我的计算机上。

我找到了其他论坛,即这个这解释了将此文件从根库复制并粘贴到用户库的修复方法,但我的 Mac 根本没有此文件。

许多用户认为该问题是导致窗口崩溃和随机关机的原因,但我似乎无法找到解决没有该文件的办法。

有什么想法吗?谢谢。

答案1

这就是com.apple.ReportCrash.Self.plist

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>Label</key>
    <string>com.apple.ReportCrash.Self</string>
    <key>MachServices</key>
    <dict>
        <key>com.apple.ReportCrash.Self</key>
        <dict>
            <key>DrainMessagesOnCrash</key>
            <string>All</string>
        </dict>
    </dict>
    <key>ProgramArguments</key>
    <array>
        <string>/System/Library/CoreServices/ReportCrash</string>
    </array>
    <key>MachExceptionHandler</key>
    <true/>
    <key>StandardErrorPath</key>
    <string>/dev/null</string>
</dict>
</plist>

相关内容