From ace38c58fbc21f4eb614816fe885a9b9a5288c1f Mon Sep 17 00:00:00 2001 From: Kyle Evans Date: Tue, 7 Dec 2021 18:39:34 -0600 Subject: [PATCH] savecore: emit information about saved cores under verbose Declare how many cores we saved, and where we saved them to. Drop a comment about emitting little information; it's obvious from the block in question that we emit nothing without verbose. Reviewed by: markj Sponsored by: NetApp, Inc. Sponsored by: Klara, Inc. X-NetApp-PR: #65 Differential Revision: https://reviews.freebsd.org/D31393 --- sbin/savecore/savecore.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sbin/savecore/savecore.c b/sbin/savecore/savecore.c index ff37484bb2f2..7a3065cd6a7c 100644 --- a/sbin/savecore/savecore.c +++ b/sbin/savecore/savecore.c @@ -1316,7 +1316,6 @@ main(int argc, char **argv) for (i = 0; i < argc; i++) DoFile(savedir, savedirfd, devs[i]); - /* Emit minimal output. */ if (nfound == 0) { if (checkfor) { if (verbose) @@ -1333,6 +1332,8 @@ main(int argc, char **argv) exit(1); } else if (verbose) logmsg(LOG_WARNING, "no unsaved dumps found"); + } else if (verbose) { + logmsg(LOG_NOTICE, "%d cores saved in %s\n", nsaved, savedir); } return (0);