Commit beda0983 authored by Kir Kolyshkin's avatar Kir Kolyshkin Committed by Andrei Vagin

compel: be silent if no errors

In case of success, we want to be silent when on default log level.

This is a time-honored UNIX tradition, who we are to break it?
Signed-off-by: 's avatarKir Kolyshkin <kir@openvz.org>
Signed-off-by: 's avatarAndrei Vagin <avagin@virtuozzo.com>
parent 5cac1131
...@@ -103,7 +103,7 @@ err: ...@@ -103,7 +103,7 @@ err:
if (opts.fout) if (opts.fout)
fclose(opts.fout); fclose(opts.fout);
if (!ret) if (!ret)
printf("%s generated successfully.\n", opts.output_filename); pr_info("%s generated successfully.\n", opts.output_filename);
return ret; return ret;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment