]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
Drop debug print level for informative debug messages
authorJouni Malinen <j@w1.fi>
Thu, 2 Jan 2020 13:52:01 +0000 (15:52 +0200)
committerJouni Malinen <j@w1.fi>
Thu, 2 Jan 2020 16:05:12 +0000 (18:05 +0200)
These are certainly not error conditions, but normal cases for starting
up. Drop the message from ERROR to DEBUG.

Signed-off-by: Jouni Malinen <j@w1.fi>
hostapd/main.c
src/ap/hostapd.c

index e42069ba9aa877719b6b795787863017a5c4b57d..9bca26e352e7cc76087bb41ec4c26774e76d59d8 100644 (file)
@@ -260,7 +260,7 @@ hostapd_interface_init(struct hapd_interfaces *interfaces, const char *if_name,
        struct hostapd_iface *iface;
        int k;
 
-       wpa_printf(MSG_ERROR, "Configuration file: %s", config_fname);
+       wpa_printf(MSG_DEBUG, "Configuration file: %s", config_fname);
        iface = hostapd_init(interfaces, config_fname);
        if (!iface)
                return NULL;
index 516d571ae2bb1639bd517e3d3a7c37522c6ec2a0..55dd11e065ff548d97a45fc43744199fe4f8c800 100644 (file)
@@ -1198,7 +1198,7 @@ static int hostapd_setup_bss(struct hostapd_data *hapd, int first)
        conf->ssid.short_ssid = crc32(conf->ssid.ssid, conf->ssid.ssid_len);
 
        if (!hostapd_drv_none(hapd)) {
-               wpa_printf(MSG_ERROR, "Using interface %s with hwaddr " MACSTR
+               wpa_printf(MSG_DEBUG, "Using interface %s with hwaddr " MACSTR
                           " and ssid \"%s\"",
                           conf->iface, MAC2STR(hapd->own_addr),
                           wpa_ssid_txt(conf->ssid.ssid, conf->ssid.ssid_len));