git: ace38c58fbc2 - main - savecore: emit information about saved cores under verbose
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 08 Dec 2021 00:39:42 UTC
The branch main has been updated by kevans: URL: https://cgit.FreeBSD.org/src/commit/?id=ace38c58fbc21f4eb614816fe885a9b9a5288c1f commit ace38c58fbc21f4eb614816fe885a9b9a5288c1f Author: Kyle Evans <kevans@FreeBSD.org> AuthorDate: 2021-12-08 00:39:34 +0000 Commit: Kyle Evans <kevans@FreeBSD.org> CommitDate: 2021-12-08 00:39:34 +0000 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);