[lxc-devel] [lxc/master] Send successful output messages to log info instead of error

caioboffo on Github lxc-bot at linuxcontainers.org
Wed Oct 9 19:14:34 UTC 2019


A non-text attachment was scrubbed...
Name: not available
Type: text/x-mailbox
Size: 612 bytes
Desc: not available
URL: <http://lists.linuxcontainers.org/pipermail/lxc-devel/attachments/20191009/f6421793/attachment.bin>
-------------- next part --------------
From 65b92ea5fcab559fd21be2685bd2f15ef6d33532 Mon Sep 17 00:00:00 2001
From: "Caio B. Silva" <caioboffo at gmail.com>
Date: Wed, 9 Oct 2019 16:00:58 -0300
Subject: [PATCH] lxc-destroy: send successful output messages to log info
 instead of error.

Signed-off-by: Caio B. Silva <caioboffo at gmail.com>
---
 src/lxc/tools/lxc_destroy.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/lxc/tools/lxc_destroy.c b/src/lxc/tools/lxc_destroy.c
index 6c06b8546d..9fb511e046 100644
--- a/src/lxc/tools/lxc_destroy.c
+++ b/src/lxc/tools/lxc_destroy.c
@@ -256,7 +256,7 @@ int main(int argc, char *argv[])
 	}
 
 	if (!c->is_defined(c)) {
-		ERROR("Container is not defined");
+		INFO("Container %s not found.", my_args.name);
 		lxc_container_put(c);
 		exit(EXIT_FAILURE);
 	}
@@ -264,11 +264,11 @@ int main(int argc, char *argv[])
 	if (my_args.task == SNAP) {
 		bret = do_destroy_with_snapshots(c);
 		if (bret)
-			ERROR("Destroyed container %s including snapshots", my_args.name);
+			INFO("Destroyed container %s including snapshots", my_args.name);
 	} else {
 		bret = do_destroy(c);
 		if (bret)
-			ERROR("Destroyed container %s", my_args.name);
+			INFO("Destroyed container %s", my_args.name);
 	}
 
 	lxc_container_put(c);


More information about the lxc-devel mailing list