diff --git a/ChangeLog b/ChangeLog index 455587de03..00b38f4b30 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Fri Nov 2 16:57:52 2012 Shota Fukumori + + * vm_dump.c (rb_vm_bugreport): Because of many log directories, + making directory lists readable. + Fri Nov 2 16:44:00 2012 Kenta Murata * vm_dump.c (rb_vm_bugreport): add ~/Library/Logs/DiagnosticReports diff --git a/vm_dump.c b/vm_dump.c index 28b6955d68..1c1a36eca9 100644 --- a/vm_dump.c +++ b/vm_dump.c @@ -633,12 +633,13 @@ rb_vm_bugreport(void) { #if defined __APPLE__ fprintf(stderr, "\n"); - fprintf(stderr, " See Crash Report log file under " - "~/Library/Logs/CrashReporter,\n"); - fprintf(stderr, " ~/Library/Logs/DiagnosticReports, " - "/Library/Logs/CrashReporter,\n"); - fprintf(stderr, " or /Library/Logs/DiagnosticReports " - "for the more detail of.\n"); + fprintf(stderr, + " See Crash Report log file under the one of following:\n" + " * ~/Library/Logs/CrashReporter\n" + " * /Library/Logs/CrashReporter\n" + " * ~/Library/Logs/DiagnosticReports\n" + " * /Library/Logs/DiagnosticReports\n" + " the more detail of.\n"); #elif HAVE_BACKTRACE #define MAX_NATIVE_TRACE 1024 static void *trace[MAX_NATIVE_TRACE];