CrashLogs

Latest

  • Sort your crashlogs with Hazel

    by 
    TJ Luoma
    TJ Luoma
    05.24.2010

    I've been on a bit of a Hazel kick lately. I wrote a short shell script that will sort my Crash Logs. #!/bin/sh ### Get the name of the app APP=`/bin/echo $1 | /usr/bin/sed 's#_.*##g'` ### make a directory /bin/mkdir -p "$APP" ### move the log into the directory /bin/mv -n "$1" "$APP" ### done! exit 0 Add this rule to the folder ~/Library/Logs/DiagnosticReports. The rules above tell Hazel to only run on crash logs older than today, in case you need to do anything with it such as send it to the developer. UPDATE: Note that the developer of Hazel left a comment below showing how to do this without a script.

  • iTunes Connect now lets developers see crash reports

    by 
    Cory Bohon
    Cory Bohon
    05.02.2009

    Apple has offered developers a glimpse as crash reporting since the iPhone 2.0 firmware was released, however, it was a kludge to get users to email you the crash reports from their ~/Library/Logs/CrashReporter/MobileDevice directory. Apple has a solution that will make this a lot easier.Enter iTunes Connect, where Apple recently added the ability for developers to view crash reports from users. iTunes connect is where developers can manage applications they have on the App Store, check their sales, and get promotional codes for their apps. When you log into iTunes Connect you will be presented with the following information regarding crash logs: Crash logs for applications are now available. To view them, go the Manage Your Applications Module below, click to view the desired application's details, then click View Crash Report.When you navigate to Manage Your Applications > your app details > View Crash Report, you will be presented with a few items that could help you debug apps. Namely, developers can view most frequent crashes, timeouts, and memory usage right from iTunes Connect. You can find out more about crash logs on the iPhone by going to Apple's Developer tech note.Thanks to everyone who sent this in!