Optionally re-introduce bb_info_msg()
[oweals/busybox.git] / networking / udhcp / common.c
index 59cf723ee1b390dfbaec59ca0fe3dd2444eff034..62ad248cee81e2f625a7131ed9d036ff377226ab 100644 (file)
@@ -191,7 +191,7 @@ static void log_option(const char *pfx, const uint8_t *opt)
        if (dhcp_verbose >= 2) {
                char buf[256 * 2 + 2];
                *bin2hex(buf, (void*) (opt + OPT_DATA), opt[OPT_LEN]) = '\0';
-               bb_error_msg("%s: 0x%02x %s", pfx, opt[OPT_CODE], buf);
+               bb_info_msg("%s: 0x%02x %s", pfx, opt[OPT_CODE], buf);
        }
 }
 #else