From: AustinReichert Date: Tue, 28 Nov 2017 09:32:50 +0000 (-0600) Subject: tools/lxc_freeze: remove internal logging X-Git-Tag: lxc-2.0.10~554 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=18322934768382fbedd62c250e7d74d15c9535b5;p=thirdparty%2Flxc.git tools/lxc_freeze: remove internal logging Signed-off-by: AustinReichert --- diff --git a/src/lxc/tools/lxc_freeze.c b/src/lxc/tools/lxc_freeze.c index 93b9df49c..d6dcf1597 100644 --- a/src/lxc/tools/lxc_freeze.c +++ b/src/lxc/tools/lxc_freeze.c @@ -33,8 +33,6 @@ #include "arguments.h" -lxc_log_define(lxc_freeze_ui, lxc); - static const struct option my_longopts[] = { LXC_COMMON_OPTIONS }; @@ -78,33 +76,33 @@ int main(int argc, char *argv[]) c = lxc_container_new(my_args.name, my_args.lxcpath[0]); if (!c) { - ERROR("No such container: %s:%s", my_args.lxcpath[0], my_args.name); + fprintf(stderr, "No such container: %s:%s\n", my_args.lxcpath[0], my_args.name); exit(EXIT_FAILURE); } if (my_args.rcfile) { c->clear_config(c); if (!c->load_config(c, my_args.rcfile)) { - ERROR("Failed to load rcfile"); + fprintf(stderr, "Failed to load rcfile\n"); lxc_container_put(c); exit(EXIT_FAILURE); } c->configfile = strdup(my_args.rcfile); if (!c->configfile) { - ERROR("Out of memory setting new config filename"); + fprintf(stderr, "Out of memory setting new config filename\n"); lxc_container_put(c); exit(EXIT_FAILURE); } } if (!c->may_control(c)) { - ERROR("Insufficent privileges to control %s:%s", my_args.lxcpath[0], my_args.name); + fprintf(stderr, "Insufficent privileges to control %s:%s\n", my_args.lxcpath[0], my_args.name); lxc_container_put(c); exit(EXIT_FAILURE); } if (!c->freeze(c)) { - ERROR("Failed to freeze %s:%s", my_args.lxcpath[0], my_args.name); + fprintf(stderr, "Failed to freeze %s:%s\n", my_args.lxcpath[0], my_args.name); lxc_container_put(c); exit(EXIT_FAILURE); }