diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/artifactory.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/artifactory.c b/src/artifactory.c index e9ec3af..06dded2 100644 --- a/src/artifactory.c +++ b/src/artifactory.c @@ -195,7 +195,10 @@ int jfrog_cli(struct JFRT_Auth *auth, char *args) { guard_free(auth_args) guard_strlist_free(arg_map) - msg(OMC_MSG_L2, "Executing: %s\n", cmd_redacted); + // Pings are noisy. Squelch them. + if (!strstr(args, "rt ping")) { + msg(OMC_MSG_L2, "Executing: %s\n", cmd_redacted); + } if (!globals.verbose) { strcpy(proc.f_stdout, "/dev/null"); |