From 4c925692f58912fbe088a09cdbbc75bfa9e865f5 Mon Sep 17 00:00:00 2001 From: Zdenek Kabelac Date: Wed, 14 Mar 2018 21:02:32 +0100 Subject: [PATCH] dmsetup: loop output table as verbose Resulting loop table line was streamed to 'stderr' stream - assuming this was not a feature when user used '-v' for more verbose output and properly show it via 'log_verbose()' on 'stdout'. --- tools/dmsetup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/dmsetup.c b/tools/dmsetup.c index eac3bb6d7..64a45a693 100644 --- a/tools/dmsetup.c +++ b/tools/dmsetup.c @@ -6606,7 +6606,7 @@ static int _loop_table(char *table, size_t tlen, char *file, return_0; if (_switches[VERBOSE_ARG] > 1) - log_error("Table: %s", table); + log_verbose("Table: %s", table); return 1; -- 2.43.5