We don't use the LOG_NOTICE level at all. That means a single '-v' has
no impact. So just ingore it and we get some useful information starting
with LOG_INFO.
Signed-off-by: Daniel Wagner <dwagner@suse.de>
{
int log_level;
+ /*
+ * LOG_NOTICE is unsued thus the user has to provide two 'v' for getting
+ * any feedback at all. Thus skip this level
+ */
+ verbose++;
+
switch (verbose) {
case 0:
log_level = LOG_WARNING;