summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--apps/debug_menu.c4
-rw-r--r--apps/logfdisp.c3
2 files changed, 5 insertions, 2 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index 84811e89dc..76c8491f6c 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -2635,8 +2635,8 @@ static const struct the_menu_item menuitems[] = {
{ "View PIC info", dbg_pic },
#endif
#ifdef ROCKBOX_HAS_LOGF
- {"logf", logfdisplay },
- {"logfdump", logfdump },
+ {"Show Log File", logfdisplay },
+ {"Dump Log File", logfdump },
#endif
#if defined(HAVE_USBSTACK)
#if defined(ROCKBOX_HAS_LOGF) && defined(USB_ENABLE_SERIAL)
diff --git a/apps/logfdisp.c b/apps/logfdisp.c
index 41cb109efd..2057a3b886 100644
--- a/apps/logfdisp.c
+++ b/apps/logfdisp.c
@@ -35,6 +35,7 @@
#include "settings.h"
#include "logfdisp.h"
#include "action.h"
+#include "splash.h"
#ifdef HAVE_LCD_BITMAP
int compute_nb_lines(int w, struct font* font)
@@ -225,6 +226,8 @@ bool logfdump(void)
{
int fd;
+ splashf(HZ, "Log File Dumped");
+
/* nothing to print ? */
if(logfindex == 0 && !logfwrap)
/* nothing is logged just yet */