Signed-off-by: Caio B. Silva <caioboffo@gmail.com>
}
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);
}
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);